forked from Learning-and-Intelligent-Systems/predicators
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.coveragerc
31 lines (27 loc) · 979 Bytes
/
.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
[run]
omit =
predicators/third_party/**
predicators/spot_utils/**
predicators/perception/spot_perceiver.py
predicators/approaches/spot_wrapper_approach.py
predicators/ground_truth_models/spot_env/**
predicators/envs/spot_env.py
predicators/envs/kitchen.py
predicators/perception/kitchen_perceiver.py
predicators/ground_truth_models/kitchen/**
tests/envs/test_spot_envs.py
# Currently disabled due to flakiness in the SME dependency.
predicators/approaches/sme_pg3_analogy_approach.py
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
# per https://coverage.readthedocs.io/en/latest/config.html#syntax
pragma: no cover
# Don't complain about abstract methods, they aren't run
@abstractmethod
@abc.abstractmethod
# Don't complain about TYPE_CHECKING imports.
if TYPE_CHECKING:
# Don't complain about longrun tests.
@longrun