Skip to content

Commit

Permalink
Add covereagerc.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed Nov 23, 2019
1 parent ec6a91e commit 3dbd96e
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]
source = flarestack
omit =
flarestack/analyses/*
flarestack/misc/*
flarestack/data/icecube/*
flarestack/cluster/make_desy_cluster_script.py
flarestack/icecube_utils/reference_sensitivity.py

[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__.:
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ matrix:
- libopenblas-base
- libopenblas-dev
script:
- coverage run --source flarestack/ --omit flarestack/analyses --omit flarestack/misc --omit flarestack/data/icecube --omit flarestack/cluster/make_desy_cluster_script.py -m unittest discover tests/
- coverage run -m unittest discover tests/
after_success:
- coveralls
notifications:
Expand Down

0 comments on commit 3dbd96e

Please sign in to comment.