-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.coveragerc
49 lines (43 loc) · 1.23 KB
/
.coveragerc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[run]
omit =
*_tmp.py
zetta_utils/log.py
zetta_utils/mazepa_layer_processing/*.py
zetta_utils/mazepa_layer_processing/**/*.py
zetta_utils/tensor_mapping/*.py
zetta_utils/tensor_mapping/**/*.py
zetta_utils/**/deprecated.py
zetta_utils/**/deprecated/*.py
zetta_utils/**/deprecated/**/*.py
zetta_utils/viz/*.py
zetta_utils/viz/**/*.py
zetta_utils/internal/*.py
zetta_utils/internal/**/*.py
zetta_utils/mazepa_addons/*.py
zetta_utils/mazepa_addons/**/*.py
zetta_utils/alignment/*.py
zetta_utils/segmentation/*.py
zetta_utils/segmentation/**/*.py
zetta_utils/training/lightning/*.py
zetta_utils/cloud_management/*.py
zetta_utils/cloud_management/**/*.py
zetta_utils/run/*.py
zetta_utils/run/**/*.py
setup.py
[report]
exclude_lines =
\.\.\.
# Skip any pass lines such as may be used for @abstractmethod
pass
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
raise TypeError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.: