Add runtests.sh script to run tox and generate HTML coverage summary.

This commit is contained in:
Carl Meyer 2013-01-27 13:35:48 -08:00
parent 6ae66e0153
commit 2bc4de921c
2 changed files with 6 additions and 0 deletions

View file

@ -4,3 +4,4 @@
^\.coverage$
^\.tox/
^Django.*\.egg$
^htmlcov/

5
runtests.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
coverage erase
tox
coverage html --include=model_utils/* --omit=model_utils/tests/*