diff options
Diffstat (limited to 'windriver/tox.ini')
-rw-r--r-- | windriver/tox.ini | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/windriver/tox.ini b/windriver/tox.ini new file mode 100644 index 00000000..764cf01c --- /dev/null +++ b/windriver/tox.ini @@ -0,0 +1,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 titanium_cloud + coverage html --omit=".tox*,*test*,*__init__.py" -d htmlcov + |