95b9a245d3809009b358d9b883d5b680dfc57d2c
[vfc/gvnfm/vnfres.git] / res / tox.ini
1 [tox]
2 envlist = py27,pep8,cov
3 skipsdist = true
4
5 [tox:jenkins]
6 downloadcache = ~/cache/pip
7
8 [flake8]
9 ignore =  E501,E226,E126,W293,E502,E225,E302
10
11 [testenv]
12 deps = -r{toxinidir}/requirements.txt
13 commands = coverage run --branch manage.py test res
14
15 [testenv:pep8]
16 deps = flake8
17 commands = flake8
18
19 [testenv:py27]
20 commands =
21   {[testenv]commands}