Python 3.10 Support

This commit is contained in:
Ariel Rin
2021-11-27 03:35:40 +00:00
parent 363e18e15d
commit 60b12bad61
8 changed files with 25 additions and 30 deletions

View File

@@ -1,7 +1,7 @@
[tox]
skipsdist = true
usedevelop = true
envlist = py{37,38,39}-{all,core}
envlist = py{37,38,39,310}-{all,core}
[testenv]
setenv =
@@ -11,11 +11,12 @@ basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
deps=
coverage
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
all: coverage run runtests.py -v 2
core: coverage run runtests.py allianceauth.authentication.tests.test_app_settings -v 2
all: coverage run runtests.py -v 2 --debug-mode
core: coverage run runtests.py allianceauth.authentication.tests.test_app_settings -v 2 --debug-mode
all: coverage report -m
all: coverage xml