diff --git a/.gitignore b/.gitignore index 6c7bc47..f5ca817 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ npm-debug.log *.lock *.egg* *.swp +.coverage* diff --git a/tox.ini b/tox.ini index 88d4fbc..4ea53f2 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,11 @@ commands = flake8 {posargs} commands = {posargs} [testenv:cover] -commands = python setup.py test --coverage --testr-args='{posargs}' +commands = + coverage erase + coverage run {toxinidir}/manage.py test zaqar_ui + coverage xml --omit '.tox/cover/*' -o 'cover/coverage.xml' + coverage html --omit '.tox/cover/*' -d 'cover/htmlcov' [testenv:py27dj18] basepython = python2.7