Restore forked ipaddr library
[integration/test.git] / tox.ini
1 [tox]
2 minversion = 1.6.0
3 envlist = docs,pre-commit
4 # TODO: Include docs when it starts performing strict checks.
5 skipsdist = true
6
7 [testenv:docs]
8 basepython = python3
9 deps = -rdocs/requirements.txt
10 commands =
11     sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
12
13 [testenv:pre-commit]
14 basepython = python3
15 deps = pre-commit
16 commands =
17     pre-commit install
18     pre-commit run --all-files