summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini78
1 files changed, 37 insertions, 41 deletions
diff --git a/tox.ini b/tox.ini
index 00b3c99e2..810b76f0c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,69 +1,65 @@
[tox]
-minversion=2.0
-envlist=flake8,mypy,py{27,34,35,36},pypy,du{11,12,13,14}
+minversion = 2.0
+envlist = docs,flake8,mypy,coverage,py{27,34,35,36,py},du{11,12,13,14}
[testenv]
-passenv = https_proxy http_proxy no_proxy
+usedevelop = True
+passenv =
+ https_proxy http_proxy no_proxy PERL PERL5LIB
+description =
+ py{27,34,35,36,py}: Run unit tests against {envname}.
+ du{11,12,13,14}: Run unit tests with the given version of docutils.
+
# TODO(stephenfin) Replace this with the 'extras' config option when tox 2.4 is
# widely available, likely some time after the Ubuntu 18.04 release
#
# https://tox.readthedocs.io/en/latest/config.html#confval-extras=MULTI-LINE-LIST
deps =
.[test,websupport]
+ du11: docutils==0.11
+ du12: docutils==0.12
+ du13: docutils==0.13.1
+ du14: docutils==0.14
setenv =
+ PYTHONWARNINGS = all,ignore::ImportWarning:pkgutil,ignore::ImportWarning:importlib._bootstrap,ignore::ImportWarning:importlib._bootstrap_external,ignore::ImportWarning:pytest_cov.plugin,ignore::DeprecationWarning:site,ignore::DeprecationWarning:_pytest.assertion.rewrite,ignore::DeprecationWarning:_pytest.fixtures
SPHINX_TEST_TEMPDIR = {envdir}/testbuild
commands=
- {envpython} -Wall tests/run.py --ignore tests/py35 --cov=sphinx \
- --durations 25 {posargs}
- sphinx-build -q -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
-
-[testenv:du11]
-deps=
- docutils==0.11
- {[testenv]deps}
-
-[testenv:du12]
-deps=
- docutils==0.12
- {[testenv]deps}
-
-[testenv:du13]
-deps=
- docutils==0.13.1
- {[testenv]deps}
-
-[testenv:du14]
-deps=
- docutils==0.14
- {[testenv]deps}
+ pytest -Wall --durations 25 {posargs}
[testenv:flake8]
-deps=flake8
-commands=flake8
+description =
+ Run style checks.
+commands =
+ flake8
[testenv:pylint]
-deps=
+description =
+ Run source code analyzer.
+deps =
pylint
{[testenv]deps}
-commands=
+commands =
pylint --rcfile utils/pylintrc sphinx
-[testenv:py27]
-deps=
- {[testenv]deps}
-
-[testenv:py35]
-commands=
- {envpython} -Wall tests/run.py --cov=sphinx --durations 25 {posargs}
- sphinx-build -q -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
+[testenv:coverage]
+description =
+ Run code coverage checks.
+setenv =
+ PYTEST_ADDOPTS = --cov sphinx --cov-config {toxinidir}/setup.cfg
+commands =
+ {[testenv]commands}
+ coverage report
[testenv:mypy]
-basepython=python3
-deps=
+description =
+ Run type checks.
+deps =
mypy
commands=
mypy sphinx/
[testenv:docs]
-commands=
+description =
+ Build documentation.
+commands =
python setup.py build_sphinx {posargs}