summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2019-07-10 15:51:29 +0300
committerGitHub <noreply@github.com>2019-07-10 15:51:29 +0300
commitb6f4f1710d34328f7d32eff692f6c61cd78bb455 (patch)
tree9d31f61bbaf2e48c5189d02733cf726bda9b2173 /tox.ini
parent8b62b3b3592c3133b30e08d48e057cf248e20448 (diff)
parent2735e1e170e5f8c66275229573669b632c0a8b61 (diff)
downloadzope-i18n-b6f4f1710d34328f7d32eff692f6c61cd78bb455.tar.gz
Merge pull request #43 from zopefoundation/drop-py34
Drop Python 3.4 support
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini18
1 files changed, 11 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index d4a3cf9..757b7d4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,25 +1,29 @@
[tox]
envlist =
- py27,py34,py35,py36,py37,pypy,pypy3,coverage,docs
+ py27,py35,py36,py37,pypy,pypy3,coverage,docs
[testenv]
commands =
- zope-testrunner --test-path=src []
+ zope-testrunner --test-path=src {posargs:-pvc}
sphinx-build -b doctest -d {envdir}/doctrees docs {envdir}/doctest
-deps =
- .[test,docs,compile]
+extras =
+ test
+ docs
+ compile
[testenv:coverage]
usedevelop = true
basepython =
python3.6
commands =
- coverage run -m zope.testrunner --test-path=src []
- coverage run -a -m sphinx -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest
+ coverage erase
+ coverage run -p -m zope.testrunner --test-path=src {posargs:-pvc}
+ coverage run -p -m sphinx -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest
+ coverage combine
coverage report --fail-under=100
deps =
- {[testenv]deps}
coverage
+parallel_show_output = true
[testenv:docs]
basepython =