update link to upper-constraints.txt
[modeling/etsicatalog.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
12 [testenv]
13 deps = -r{toxinidir}/requirements.txt
14 commands = coverage run --branch manage.py test catalog
15
16 [testenv:pep8]
17 deps = flake8
18 commands = flake8
19
20 [testenv:py36]
21 commands =
22   {[testenv]commands}
23
24 [testenv:cov]
25 deps = coverage==4.2
26 commands = coverage xml --omit="*test*,*__init__.py,*site-packages*"
27