There was an error while loading. Please reload this page.
1 parent 0a1bad5 commit be9d90fCopy full SHA for be9d90f
1 file changed
tox.ini
@@ -49,7 +49,19 @@ install_command = python -Im pip install -U --pre {opts} {packages}
49
50
allowlist_externals = pytest
51
commands_pre = python -I {toxinidir}/tests/manage.py migrate
52
-commands = python -Im pytest --cov --cov-append --ignore=docs/ {posargs: -vv}
+commands = python -Im pytest --cov --cov-append --cov-report= --ignore=docs/ {posargs: -vv}
53
+
54
+[testenv:report]
55
+deps = coverage
56
+skip_install = true
57
+commands =
58
+ coverage report
59
+ coverage html
60
61
+[testenv:clean]
62
63
64
+commands = coverage erase
65
66
[testenv:interactive]
67
description = An interactive environment for local testing purposes
0 commit comments