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