mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
00b9dce0e9
Squashed commits: [dadf579] switched to codecov from coveralls [76f5184] added badge to Readme; debugging travis script; [8b2a807] Testing submission to coveralls [675ac37] Added coveralls support for travis
25 lines
631 B
INI
25 lines
631 B
INI
# .coveragerc to control coverage.py
|
|
# following the example at http://nedbatchelder.com/code/coverage/config.html
|
|
[run]
|
|
branch = True
|
|
include = helpdesk/*
|
|
omit =
|
|
*helpdesk/south_migrations/*
|
|
*helpdesk/migrations/*
|
|
|
|
[report]
|
|
# Regexes for lines to exclude from consideration
|
|
exclude_lines =
|
|
# Have to re-enable the standard pragma
|
|
pragma: no cover
|
|
|
|
# Don't complain if tests don't hit defensive assertion code:
|
|
raise AssertionError
|
|
raise NotImplementedError
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
if 0:
|
|
if __name__ == .__main__.:
|
|
if __name__==.__main__.:
|
|
|
|
ignore_errors = True |