summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini12
1 files changed, 5 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index f51defb..539da4e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,18 +16,16 @@ commands =
coverage report --show-missing
[testenv:coverage]
-skip_install=false
-skipsdist=true
-depends = py36,py37,py38,py39
+skip_install = true
deps =
coverage
setenv =
COVERAGE_FILE=.coverage
commands =
- {envbindir}/coverage erase
- {envbindir}/coverage combine
- {envbindir}/coverage xml
- {envbindir}/coverage report --show-missing --fail-under=100
+ coverage erase
+ coverage combine
+ coverage xml
+ coverage report --show-missing --fail-under=100
[testenv:docs]
basepython = python3.9