Network to VPN association/dissociation improvements
[netvirt.git] / tox.ini
1 [tox]
2 minversion = 1.6.0
3 envlist = coala,docs,pre-commit
4 skipsdist = true
5
6 [testenv:coala]
7 basepython = python3
8 deps =
9     coala==0.11.0
10     coala-bears==0.11.0
11     detox~=0.18
12     pygments~=2.3.1
13     requests~=2.21.0
14 commands =
15     coala --non-interactive
16
17 [testenv:docs]
18 deps = -rdocs/requirements.txt
19 commands =
20     sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html
21
22 [testenv:pre-commit]
23 basepython = python3
24 deps = pre-commit
25 commands =
26     pre-commit install --hook-type commit-msg
27     pre-commit run --all-files