Added make target for test coverage, documented make commands

This commit is contained in:
Anton Sarukhanov 2016-06-08 08:26:01 -04:00
parent 4f83f705e7
commit 5cadd4a348
4 changed files with 25 additions and 9 deletions

View file

@ -7,8 +7,13 @@ test:
FLASK_DEBUG= py.test tests examples
tox-test:
pip install -r test-requirements.txt -q
tox
cov:
pip install -r test-requirements.txt -q
FLASK_DEBUG= py.test --cov-report term --cov-report html --cov=flask --cov=examples tests examples
audit:
python setup.py audit