update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / tox.ini
1 [tox]
2 envlist = py36,pep8,cov
3 skipsdist = true
4
5 [tox:jenkins]
6 downloadcache = ~/cache/pip
7
8 [flake8]
9 ignore = E501,E722
10 exclude = ./venv-tox,./.tox,./venv,./docs
11 max-complexity = 27
12
13 [testenv]
14 deps = -r{toxinidir}/requirements.txt
15 commands = coverage run --branch manage.py test lcm
16
17 [testenv:pep8]
18 deps = flake8
19 commands = flake8
20
21 [testenv:py36]
22 commands =
23   {[testenv]commands}
24
25 #[testenv:cov]
26 #deps = coverage==4.2
27 #commands = coverage xml --omit="*test_*,*__init__.py,*site-packages*"