-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy path.coveragerc
More file actions
34 lines (30 loc) · 857 Bytes
/
.coveragerc
File metadata and controls
34 lines (30 loc) · 857 Bytes
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
# Coverage configuration for ContentProcessor
# Excludes integration components to focus on core business logic
[run]
source = ../../ContentProcessor/src
omit =
# Exclude main entry points (tested via integration)
*/main.py
# Exclude queue handler base (abstract class requiring concrete implementations)
*/libs/pipeline/queue_handler_base.py
# Exclude agent framework (external dependency compatibility issues)
*/libs/agent_framework/*
# Exclude test files
*/tests/*
*/test_*.py
*/__pycache__/*
[report]
exclude_lines =
# Standard exclusions
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
@abstractmethod
@abc.abstractmethod
precision = 2
show_missing = True
[html]
directory = htmlcov_core_logic