We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea9e84 commit a176377Copy full SHA for a176377
.coveragerc
@@ -2,3 +2,21 @@
2
source = pygccxml,docs/example,unittests
3
parallel = True
4
append = .coverage
5
+
6
+[report]
7
+# Regexes for lines to exclude from consideration
8
+exclude_lines =
9
+ # Have to re-enable the standard pragma
10
+ pragma: no cover
11
12
+ # Don't complain about missing debug-only code:
13
+ def __repr__
14
+ if self\.debug
15
16
+ # Don't complain if tests don't hit defensive assertion code:
17
+ raise AssertionError
18
+ raise NotImplementedError
19
20
+ # Don't complain if non-runnable code isn't run:
21
+ if 0:
22
+ if __name__ == .__main__.:
0 commit comments