Fix POST request with insert parameter
[netconf.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist =
4     docs
5     docs-linkcheck
6 skipsdist = true
7
8 [testenv]
9 passenv = http_proxy, HTTP_PROXY, https_proxy, HTTPS_PROXY, no_proxy, NO_PROXY
10 basepython = python3
11 deps = -rdocs/requirements.txt
12
13 [testenv:docs]
14 basepython = python3
15 commands =
16     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
17
18 [testenv:docs-linkcheck]
19 basepython = python3
20 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
21