Coverage report tuning

Tweak the included and omitted files used in the coverage report for
coveralls.
This commit is contained in:
Aaron Iles 2013-05-30 21:07:55 +10:00
parent 40efe21bd3
commit fda747b1f8
3 changed files with 8 additions and 2 deletions

6
.coveragerc Normal file
View File

@ -0,0 +1,6 @@
[run]
source=funcsigs
omit=funcsigs/odict*
[report]
include=funcsigs*

View File

@ -10,7 +10,7 @@ install:
- python setup.py install
script:
- coverage run setup.py test
- coverage report --include="funcsigs*"
- coverage report --show-missing
after_success:
- coveralls
notifications:

View File

@ -25,7 +25,7 @@ lint:
flake8 --exit-zero funcsigs tests
coverage:
coverage report --show-missing --include="funcsigs*"
coverage report --show-missing
clean:
python setup.py clean --all