blob: ee15e4b028ca7f326131f577d9cb5736a4d64897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[tox]
envlist = py27,py35
skipsdist = true
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv]
deps = -r{toxinidir}/requirements.txt
commands = coverage run --branch manage.py test newton
coverage html --omit=".tox*,*test*,*__init__.py" -d htmlcov
|