diff options
Diffstat (limited to 'newton')
-rw-r--r-- | newton/tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newton/tox.ini b/newton/tox.ini index ee15e4b0..71a8ff75 100644 --- a/newton/tox.ini +++ b/newton/tox.ini @@ -7,6 +7,6 @@ downloadcache = ~/cache/pip [testenv] deps = -r{toxinidir}/requirements.txt -commands = coverage run --branch manage.py test newton - coverage html --omit=".tox*,*test*,*__init__.py" -d htmlcov - +commands = + coverage run --branch manage.py test + coverage report --omit=".tox/*,*tests*,*__init__.py" --fail-under=30 |