wrider | b750403 | 2019-11-07 18:15:23 -0500 | [diff] [blame] | 1 | [tox] |
2 | minversion = 2.0 | ||||
3 | envlist = | ||||
4 | docs, | ||||
5 | docs-linkcheck, | ||||
6 | |||||
7 | skipsdist = true | ||||
8 | |||||
9 | [testenv:docs] | ||||
10 | basepython = python3 | ||||
11 | deps = | ||||
12 | sphinx | ||||
13 | sphinx-rtd-theme | ||||
14 | sphinxcontrib-httpdomain | ||||
15 | recommonmark | ||||
16 | lfdocs-conf | ||||
17 | |||||
18 | commands = | ||||
19 | sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html | ||||
20 | |||||
21 | echo "Generated docs available in {toxinidir}/docs/_build/html" | ||||
22 | |||||
23 | whitelist_externals = echo | ||||
24 | |||||
25 | [testenv:docs-linkcheck] | ||||
26 | basepython = python3 | ||||
27 | deps = sphinx | ||||
28 | sphinx-rtd-theme | ||||
29 | sphinxcontrib-httpdomain | ||||
30 | recommonmark | ||||
31 | lfdocs-conf | ||||
32 | commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck |