Skip to content

Commit

Permalink
Merge pull request #239 from jGaboardi/coverage_testing
Browse files Browse the repository at this point in the history
Coverage testing
  • Loading branch information
jGaboardi authored Jan 2, 2019
2 parents 74e5c3f + 36a92cf commit 348bba2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# .coveragerc to control coverage.py
[run]
branch = True
include = */spaghetti/*

[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__
if self\.debug

# 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__.:

ignore_errors = True

[html]
directory = coverage_html_report
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ install:

script:
- python setup.py sdist >/dev/null
- nosetests --with-doctest --with-coverage --cover-package=spaghetti;
- nosetests --verbose --with-doctest --with-coverage --cover-package=spaghetti;

notifications:
email:
Expand Down

0 comments on commit 348bba2

Please sign in to comment.