diff options
Diffstat (limited to 'newton/tox.ini')
-rw-r--r-- | newton/tox.ini | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/newton/tox.ini b/newton/tox.ini index 70ca1ae5..4be77268 100644 --- a/newton/tox.ini +++ b/newton/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" --fail-under=30 - coverage xml -i +commands = + coverage run --branch manage.py test newton + 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*" + |