.coveragerc 498 B

12345678910111213141516171819202122
  1. [run]
  2. branch = True
  3. parallel = True
  4. omit = tests/*
  5. [report]
  6. # Regexes for lines to exclude from consideration
  7. exclude_lines =
  8. # Have to re-enable the standard pragma
  9. pragma: no cover
  10. # Don't complain about missing debug-only code:
  11. def __repr__
  12. if self\.debug
  13. # Don't complain if tests don't hit defensive assertion code:
  14. raise AssertionError
  15. raise NotImplementedError
  16. # Don't complain if non-runnable code isn't run:
  17. if 0:
  18. if __name__ == .__main__.: