Set Python and Ubuntu versions in .readthedocs.yaml
[optf/has.git] / conductor / .coveragerc
1 # .coveragerc to control coverage.py
2 [report]
3 # Regexes for lines to exclude from consideration
4 exclude_lines =
5     # Have to re-enable the standard pragma
6     pragma: no cover
7
8     # Don't complain about missing debug-only code:
9     def __repr__
10     def main()
11     if self\.debug
12
13     # Don't complain if tests don't hit defensive assertion code:
14     raise AssertionError
15     raise NotImplementedError
16
17     # Don't complain if non-runnable code isn't run:
18     if 0:
19     if __name__ == .__main__.:
20
21 ignore_errors = True