mirror of https://github.com/wooey/Wooey.git
addition of coveragerc file
This commit is contained in:
parent
b13a368278
commit
00347548cd
|
@ -0,0 +1,3 @@
|
|||
[run]
|
||||
branch = True
|
||||
omit = wooey/conf*,wooey/migrations*,wooey/tests*
|
4
Makefile
4
Makefile
|
@ -4,6 +4,6 @@ testenv:
|
|||
pip install -e .
|
||||
|
||||
test:
|
||||
nosetests tests
|
||||
coverage run --branch --source=wooey --omit=wooey/conf*,wooey/migrations*,wooey/tests*,wooey/backend/ast* `which django-admin.py` test --settings=wooey.test_settings wooey.tests
|
||||
nosetests --with-coverage --cover-erase --cover-package=wooey tests
|
||||
coverage run --branch --source=wooey `which django-admin.py` test --settings=wooey.test_settings wooey.tests
|
||||
coverage report
|
||||
|
|
Loading…
Reference in New Issue