| # documentation only |
| [tox] |
| minversion = 2.0 |
| envlist = |
| docs, |
| docs-linkcheck, |
| skipsdist = true |
| |
| [testenv:docs] |
| basepython = python3 |
| deps = |
| sphinx |
| sphinx-rtd-theme |
| sphinxcontrib-httpdomain |
| recommonmark |
| lfdocs-conf |
| urllib3~=1.26.15 |
| allowlist_externals = echo |
| commands = |
| sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html |
| echo "Generated docs available in {toxinidir}/docs/_build/html" |
| |
| [testenv:docs-linkcheck] |
| basepython = python3 |
| deps = sphinx |
| sphinx-rtd-theme |
| sphinxcontrib-httpdomain |
| recommonmark |
| lfdocs-conf |
| urllib3~=1.26.15 |
| commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck |