-
-
Notifications
You must be signed in to change notification settings - Fork 705
Expand file tree
/
Copy path.coveragerc
More file actions
21 lines (18 loc) · 585 Bytes
/
Copy path.coveragerc
File metadata and controls
21 lines (18 loc) · 585 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[run]
data_file = .cache/reports/coverage/.coverage
source_dirs =
src/python/micro_espectre
src/python/espectre_cli
omit =
# MicroPython-only modules that require hardware/specific runtime
src/python/micro_espectre/main.py
src/python/micro_espectre/config_local.py
[report]
exclude_also =
# Don't complain if tests don't hit defensive assertion code
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run
if __name__ == ["']__main__["']:
# Don't complain about abstract methods
@abstractmethod