diff --git a/tox.ini b/tox.ini index 3da4106..7fd2363 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = clean, - py{36,37,38,39} + test, cov skip_missing_interpreters = True isolated_build = True @@ -16,8 +16,8 @@ deps = .[test] commands = pytest -n 0 --cov --cov-append --cov-report=term-missing --disable-warnings --junitxml=report.xml depends = - py{36,37,38,39}: clean - cov: py{36,37,38,39} + test: clean + cov: test [testenv:cov]