Skip to content

Commit

Permalink
add a coveragerc
Browse files Browse the repository at this point in the history
  • Loading branch information
itziakos committed Jul 1, 2015
1 parent 1a8c9dc commit 8025cf9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[run]
branch = True
source = traitsui
omit = */tests/*

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain about missing debug-only code:
def __repr__

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError

if __name__ == .__main__.:

ignore_errors = True

0 comments on commit 8025cf9

Please sign in to comment.