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