Files
sphinx/tox.ini

77 lines
1.7 KiB
INI
Raw Normal View History

2010-07-23 10:37:44 +01:00
[tox]
minversion = 2.4.0
envlist = docs,flake8,mypy,coverage,py{35,36,37,38},du{12,13,14}
2010-07-23 10:37:44 +01:00
[testenv]
usedevelop = True
passenv =
2018-03-20 23:35:32 +09:00
https_proxy http_proxy no_proxy PERL PERL5LIB PYTEST_ADDOPTS EPUBCHECK_PATH
description =
py{35,36,37,38}: Run unit tests against {envname}.
2018-08-24 22:01:41 +09:00
du{12,13,14}: Run unit tests with the given version of docutils.
deps =
du12: docutils==0.12
du13: docutils==0.13.1
du14: docutils==0.14
extras =
test
websupport
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,ignore::DeprecationWarning:distutils
2010-07-23 11:16:17 +01:00
commands=
pytest --durations 25 {posargs}
2010-07-23 11:16:17 +01:00
2015-03-07 15:45:43 +09:00
[testenv:flake8]
basepython = python3
description =
Run style checks.
commands =
flake8
[testenv:pylint]
basepython = python3
description =
Run source code analyzer.
deps =
pylint
{[testenv]deps}
commands =
pylint --rcfile utils/pylintrc sphinx
[testenv:coverage]
basepython = python3
description =
Run code coverage checks.
setenv =
PYTEST_ADDOPTS = --cov sphinx --cov-config {toxinidir}/setup.cfg
commands =
{[testenv]commands}
coverage report
[testenv:mypy]
basepython = python3
description =
Run type checks.
deps =
mypy
2018-12-04 01:52:07 +09:00
docutils-stubs
commands=
mypy sphinx/
[testenv:docs]
basepython = python3
description =
Build documentation.
2018-09-02 13:50:20 +09:00
deps =
sphinxcontrib-websupport
commands =
python setup.py build_sphinx {posargs}
[testenv:bindep]
description =
Install binary dependencies.
deps =
bindep
commands =
bindep test