summaryrefslogtreecommitdiffstats
path: root/ocata/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'ocata/tox.ini')
-rw-r--r--ocata/tox.ini20
1 files changed, 16 insertions, 4 deletions
diff --git a/ocata/tox.ini b/ocata/tox.ini
index 671a4f1d..be63b80f 100644
--- a/ocata/tox.ini
+++ b/ocata/tox.ini
@@ -1,15 +1,27 @@
[tox]
-envlist = py27,py35
+envlist = py27,py35,cov
skipsdist = true
[tox:jenkins]
downloadcache = ~/cache/pip
+[flake8]
+ignore = E501,E722
+exclude = ./venv-tox,./.tox
+max-complexity = 27
+
[testenv]
setenv =
PYTHONPATH = {toxinidir}/../share
deps = -r{toxinidir}/requirements.txt
commands =
- coverage run --branch manage.py test
- coverage report --omit=".tox/*,*tests*,*__init__.py,*newton*" --fail-under=30
- coverage xml -i
+ coverage run --branch manage.py test ocata
+ coverage report --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*" --fail-under=30
+
+[testenv:pep8]
+deps=flake8
+commands=flake8
+
+[testenv:cov]
+commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*"
+