blob: 9ab0da4432cee7112f7a675843d3f26a7b1cc446 [file] [log] [blame]
Alex Stancu5819a222019-11-13 13:58:45 +02001# documentation only
2[tox]
3minversion = 2.0
4envlist =
5 docs,
6 docs-linkcheck,
7skipsdist = true
8
9[testenv:docs]
10basepython = python3
11deps =
12 sphinx
13 sphinx-rtd-theme
14 sphinxcontrib-httpdomain
15 recommonmark
16 lfdocs-conf
17
18commands =
19 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
20 echo "Generated docs available in {toxinidir}/docs/_build/html"
21whitelist_externals = echo
22
23[testenv:docs-linkcheck]
24basepython = python3
25deps = sphinx
26 sphinx-rtd-theme
27 sphinxcontrib-httpdomain
28 recommonmark
29 lfdocs-conf
30commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck