Skip to content
Snippets Groups Projects
Commit 53ca1159 authored by DavidLP's avatar DavidLP
Browse files

ENH: define what to cover better

parent 6116f7a0
No related branches found
No related tags found
2 merge requests!418Release v1.5.0,!387Increase scan testing coverage
# .coveragerc to control coverage.py # .coveragerc to control coverage.py
[run] [run]
branch = True # branch = True # statement coverage instead of branch coverage is sufficient right now
[report] [report]
# Regexes for lines to exclude from consideration # Regexes for lines to exclude from consideration
...@@ -8,6 +8,10 @@ exclude_lines = ...@@ -8,6 +8,10 @@ exclude_lines =
# Have to re-enable the standard pragma # Have to re-enable the standard pragma
pragma: no cover pragma: no cover
if __name__ == .__main__.:
@numba.njit
@njit
def __repr__
# Don't complain if tests don't hit defensive assertion code: # Don't complain if tests don't hit defensive assertion code:
raise AssertionError raise AssertionError
raise NotImplementedError raise NotImplementedError
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment