.coveragerc 452 B

1234567891011121314151617181920212223242526272829
  1. [run]
  2. source = redmail
  3. branch = False
  4. omit =
  5. test/*
  6. _version.py
  7. data_file = cov_data/.coverage
  8. [report]
  9. omit =
  10. redmail/test/*
  11. redmail/_version.py
  12. # Regexes for lines to exclude from consideration
  13. exclude_lines =
  14. pragma: no cover
  15. # Don't complain about abstract methods, they aren't run:
  16. @(abc\.)?abstractmethod
  17. # Ignore type checking imports
  18. if TYPE_CHECKING
  19. ignore_errors = True
  20. [html]
  21. directory = htmlcov