Configured Tox to give coverage.py data

This commit is contained in:
neviyn 2016-03-25 18:21:53 +00:00
parent 42a5ff1eb9
commit c655bad631
2 changed files with 6 additions and 4 deletions

View File

@ -4,6 +4,4 @@ flask
flask-login
flask-sqlalchemy
flask-wtf
flask-testing
blinker
ujson

View File

@ -8,6 +8,10 @@ envlist = py34
skipsdist = True
[testenv]
commands = python3 tests.py
commands = coverage erase
coverage run --omit ./.tox/* tests.py
coverage html
deps = -rrequirements.txt
coverage
flask-testing
blinker