1 parent f687d34 commit 0cbdb7bCopy full SHA for 0cbdb7b
1 file changed
.coveragerc
@@ -11,11 +11,13 @@ plugins = Cython.Coverage
11
core = ctrace
12
branch = False
13
relative_files = True
14
-# Omits specific definition files that causes plugin errors
+# Cython.Coverage cannot FileReporter declaration files (no parent-.c walk for
15
+# .pxd) or includes whose generated .cpp is not beside the source
16
+# (cyruntime.pxi). Keep system/*.pxi and _lib/utils.pxi: those have a sibling
17
+# translation unit on the combine runner. Must be [run], not [report].
18
omit =
- */windll.pxd
- */_lib/windll.pxd
- */_lib/utils.pxd
19
+ */*.pxd
20
+ */cyruntime.pxi
21
22
[report]
23
show_missing = true
0 commit comments