blob: 68464cb4866ed599dac8860b3f0c7e080e09d90a [file] [log] [blame]
[run]
source =
franky
include = franky/*
branch = True
[report]
# Report coverage to .1% accuracy
precision = 1
# Expected coverage percentage. We strive for 100% coverage in Python.
fail_under = 78
show_missing = True
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 pass
^\s*pass\s*$