From 7c6fce3dc411e96758edb72ea1a0acff1a0cd1a1 Mon Sep 17 00:00:00 2001 From: edX requirements bot Date: Fri, 23 Feb 2024 07:37:37 -0500 Subject: [PATCH] feat: add python 3.12 support --- tox.ini | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 81f0f2dd..c8e80722 100644 --- a/tox.ini +++ b/tox.ini @@ -1,18 +1,19 @@ [tox] -envlist = py{38} +envlist = py{38, 312} skip_missing_interpreters = True [testenv] deps = - pytest + pytest -r{toxinidir}/requirements/testing.txt -allowlist_externals=pytest -commands=pytest {posargs:-n auto} -setenv = +allowlist_externals = pytest +commands = pytest {posargs:-n auto} +setenv = AWS_DEFAULT_REGION=us-east-1 [pytest] addopts = --cov tubular --cov-report term-missing --cov-report xml norecursedirs = .* requirements -testpaths = +testpaths = tests +