1
0

.coveragerc 578 B

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