diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:25:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:25:40 +0000 |
commit | cf7da1843c45a4c2df7a749f7886a2d2ba0ee92a (patch) | |
tree | 18dcde1a8d1f5570a77cd0c361de3b490d02c789 /tox.ini | |
parent | Initial commit. (diff) | |
download | sphinx-cf7da1843c45a4c2df7a749f7886a2d2ba0ee92a.tar.xz sphinx-cf7da1843c45a4c2df7a749f7886a2d2ba0ee92a.zip |
Adding upstream version 7.2.6.upstream/7.2.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 55 |
1 files changed, 55 insertions, 0 deletions
@@ -0,0 +1,55 @@ +[tox] +minversion = 2.4.0 +envlist = py{39,310,311,312,313} +isolated_build = True + +[testenv] +usedevelop = True +passenv = + https_proxy + http_proxy + no_proxy + COLORTERM + PERL + PERL5LIB + PYTEST_ADDOPTS + DO_EPUBCHECK + EPUBCHECK_PATH + TERM +description = + py{39,310,311,312,313}: Run unit tests against {envname}. +extras = + test +setenv = + PYTHONWARNINGS = error + PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes +commands= + python -X dev -X warn_default_encoding -m pytest --durations 25 {posargs} + +[testenv:docs] +basepython = python3 +description = + Build documentation. +extras = + docs +commands = + sphinx-build -M html ./doc ./build/sphinx -W --keep-going + +[testenv:docs-live] +basepython = python3 +description = + Build documentation. +extras = + docs +deps = + sphinx-autobuild +commands = + sphinx-autobuild ./doc ./build/sphinx/ + +[testenv:bindep] +description = + Install binary dependencies. +deps = + bindep +commands = + bindep test |