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