From 93f06924446ae85963739ccf6dda26f052acc6d5 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Mon, 10 Oct 2022 21:00:05 -0400 Subject: [PATCH] Enabled Python 3.10 tests in Tox. --- tox.ini | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tox.ini b/tox.ini index baffcf8..0d7b1b1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py{py3}-{test,pylint,flake8,vulture} - py{36,37,38,39}-{test,mypy,pylint,flake8,vulture} + py{36,37,38,39,310}-{test,mypy,pylint,flake8,vulture} cov skip_missing_interpreters = true @@ -9,11 +9,11 @@ skip_missing_interpreters = true deps = test: pytest<6.0 test,cov: {[testenv:cov]deps} - test,py{36,37,38,39}-{type,mypy}: colorama - py{36,37,38,39}-{type,mypy}: {[testenv:mypy]deps} - py{py3,36,37,38,39}-{lint,pylint},lint: {[testenv:pylint]deps} - py{py3,36,37,38,39}-{lint,flake8},lint: {[testenv:flake8]deps} - py{py3,36,37,38,39}-{lint,vulture},lint: {[testenv:vulture]deps} + test,py{36,37,38,39,310}-{type,mypy}: colorama + py{36,37,38,39,310}-{type,mypy}: {[testenv:mypy]deps} + py{py3,36,37,38,39,310}-{lint,pylint},lint: {[testenv:pylint]deps} + py{py3,36,37,38,39,310}-{lint,flake8},lint: {[testenv:flake8]deps} + py{py3,36,37,38,39,310}-{lint,vulture},lint: {[testenv:vulture]deps} setenv = SSHAUDIT = {toxinidir}/src test: COVERAGE_FILE = {toxinidir}/.coverage.{envname} @@ -25,10 +25,10 @@ commands = test: coverage combine test: coverage report --show-missing test: coverage html -d {toxinidir}/reports/html/coverage.{envname} - py{36,37,38,39}-{type,mypy}: {[testenv:mypy]commands} - py{py3,36,37,38,39}-{lint,pylint},lint: {[testenv:pylint]commands} - py{py3,36,37,38,39}-{lint,flake8},lint: {[testenv:flake8]commands} - py{py3,36,37,38,39}-{lint,vulture},lint: {[testenv:vulture]commands} + py{36,37,38,39,310}-{type,mypy}: {[testenv:mypy]commands} + py{py3,36,37,38,39,310}-{lint,pylint},lint: {[testenv:pylint]commands} + py{py3,36,37,38,39,310}-{lint,flake8},lint: {[testenv:flake8]commands} + py{py3,36,37,38,39,310}-{lint,vulture},lint: {[testenv:vulture]commands} #ignore_outcome = # type: true # lint: true