Start ssh properly for Ubuntu
[samplevnf.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 -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
13     echo "Generated docs available in {toxinidir}/docs/_build/html"
14 whitelist_externals = echo
15
16 [testenv:docs-linkcheck]
17 basepython = python3
18 deps = -rdocs/requirements.txt
19 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck