Merge "Add pep8 check for vfc-nfvo-lcm"
[vfc/nfvo/lcm.git] / tox.ini
1 [tox]
2 envlist = py27,pep8
3 skipsdist = true
4
5 [tox:jenkins]
6 downloadcache = ~/cache/pip
7
8 [flake8]
9 ignore =  E501
10 exclude =  ./venv-tox,./.tox
11
12 [testenv]
13 deps = -r{toxinidir}/requirements.txt
14 commands = coverage run --branch manage.py test lcm
15
16 [testenv:pep8]
17 deps = flake8
18 commands = flake8
19
20 [testenv:py27]
21 commands =
22   {[testenv]commands}