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