-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.coveragerc
More file actions
53 lines (46 loc) · 1.03 KB
/
.coveragerc
File metadata and controls
53 lines (46 loc) · 1.03 KB
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
50
51
52
53
[run]
# Coverage configuration for OpenHCS
source = openhcs
branch = True
parallel = True
concurrency = multiprocessing
# Include all Python files in the openhcs package
include = openhcs/*
# Exclude test files and generated files
omit =
*/tests/*
*/test_*
*/__pycache__/*
*/.*
setup.py
*/conftest.py
# Exclude external packages that might be in the source tree
*/torbi/*
*/semantic_matrix_analyzer/*
*/dna/*
[report]
# Reporting configuration
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
class .*\bProtocol\):
@(abc\.)?abstractmethod
# Show missing lines in the report
show_missing = True
skip_covered = False
skip_empty = False
# Precision for coverage percentage
precision = 1
[html]
# HTML report configuration
directory = site/coverage
title = OpenHCS Coverage Report
[xml]
# XML report configuration (for badges and CI)
output = coverage.xml