blob: 72742cff9226210973133edaf2d3090db71b1183 [file] [log] [blame]
rajalakshmisv301648c2021-12-16 16:51:02 +00001# 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