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 a3a17d8 commit dec6acdCopy full SHA for dec6acd
.coveragerc
setup.cfg
@@ -16,3 +16,27 @@ addopts =
16
--ignore doc/_build
17
--ignore doc/_templates
18
--no-cov-on-fail
19
+
20
+[coverage:run]
21
+branch = True
22
+source = skdag
23
+include = */skdag/*
24
+omit =
25
+ */tests/*
26
+ *_test.py
27
+ test_*.py
28
+ */setup.py
29
30
+[coverage:report]
31
+exclude_lines =
32
+ pragma: no cover
33
+ def __repr__
34
+ if self.debug:
35
+ if settings.DEBUG
36
+ raise AssertionError
37
+ raise NotImplementedError
38
+ if 0:
39
+ if __name__ == .__main__.:
40
+ if self.verbose:
41
+show_missing = True
42
0 commit comments