Update testtool documentation
[netconf.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist =
4     docs
5     docs-linkcheck
6 skipsdist = true
7
8 [testenv:docs]
9 basepython = python3
10 deps = -rdocs/requirements.txt
11 commands =
12     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
13
14 [testenv:docs-linkcheck]
15 basepython = python3
16 deps = -rdocs/requirements.txt
17 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
18