aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-01-26 22:21:08 -0800
committerDavid Lord <davidism@gmail.com>2020-01-26 22:21:08 -0800
commitc775bb99497b0c89746c3cc658ace45f9016a12e (patch)
tree3fd70357671f6feacf8d2d56c5519458ab65c845 /tox.ini
parent15337f794a889f5496c401493cf5d88e7f271197 (diff)
downloadjinja-c775bb99497b0c89746c3cc658ace45f9016a12e.tar.gz
remove test and coverage results from ci
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini20
1 files changed, 1 insertions, 19 deletions
diff --git a/tox.ini b/tox.ini
index 3ee86d1c..679ebebe 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,14 +3,12 @@ envlist =
py{38,37,36,35,27,py3,py}
style
docs
- coverage
skip_missing_interpreters = true
[testenv]
deps =
- coverage
pytest
-commands = coverage run -p -m pytest --tb=short --basetemp={envtmpdir} {posargs}
+commands = pytest --tb=short --basetemp={envtmpdir} {posargs}
[testenv:style]
deps = pre-commit
@@ -20,19 +18,3 @@ commands = pre-commit run --all-files --show-diff-on-failure
[testenv:docs]
deps = -r docs/requirements.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
-
-[testenv:coverage]
-deps = coverage
-skip_install = true
-commands =
- coverage combine
- coverage html
- coverage report
-
-[testenv:coverage-ci]
-deps = coverage
-skip_install = true
-commands =
- coverage combine
- # Ignoring errors because 2.7.15 and 3.5.5 on Azure can't parse async files.
- coverage xml --ignore-errors