Added make target for test coverage, documented make commands
This commit is contained in:
parent
4f83f705e7
commit
5cadd4a348
4 changed files with 25 additions and 9 deletions
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue