| 1234567891011121314151617181920212223242526272829 |
- [run]
- source = redmail
- branch = False
- omit =
- test/*
- _version.py
- data_file = cov_data/.coverage
- [report]
- omit =
- redmail/test/*
- redmail/_version.py
- # Regexes for lines to exclude from consideration
- exclude_lines =
- pragma: no cover
- # Don't complain about abstract methods, they aren't run:
- @(abc\.)?abstractmethod
- # Ignore type checking imports
- if TYPE_CHECKING
- ignore_errors = True
- [html]
- directory = htmlcov
|