Simplify getInvolvedL2GwDevices()
[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     pygments~=2.3.1
12     requests~=2.21.0
13 commands =
14     coala --non-interactive
15
16 [testenv:docs]
17 deps = -rdocs/requirements.txt
18 commands =
19     sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html
20
21 [testenv:pre-commit]
22 deps = pre-commit
23 commands =
24     pre-commit install --hook-type commit-msg
25     pre-commit run --all-files