blob: 70ca1ae562b2b76bc316a87ad7fd7f0c05f830ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[tox]
envlist = py27,py35
skipsdist = true
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv]
setenv =
PYTHONPATH = {toxinidir}/../share
deps = -r{toxinidir}/requirements.txt
commands =
coverage run --branch manage.py test
coverage report --omit=".tox/*,*tests*,*__init__.py" --fail-under=30
coverage xml -i
|