forked from doobidoo/mcp-memory-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coveragerc
More file actions
62 lines (61 loc) · 1.63 KB
/
Copy path.coveragerc
File metadata and controls
62 lines (61 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
[run]
source = src/mcp_memory_service
omit =
# OAuth system - no tests yet (Issue #316)
*/web/oauth/*
# Web infrastructure - minimal test coverage
*/web/app.py
*/web/sse.py
# Web API endpoints - minimal test coverage
*/web/api/*
*/web/dependencies.py
# Sync infrastructure - no tests
*/sync/*
# Backup/scheduler - infrastructure code
*/backup/scheduler.py
*/consolidation/scheduler.py
# CLI commands - minimal coverage
*/cli/*
# API client layer - infrastructure code
*/api/client.py
*/api/operations.py
*/api/sync_wrapper.py
# Ingestion system - minimal coverage
*/ingestion/*
# Discovery system - infrastructure code
*/discovery/*
# Utility modules - infrastructure code
*/utils/cache_manager.py
*/utils/directory_ingestion.py
*/utils/health_check.py
*/utils/http_server_manager.py
*/utils/port_detection.py
*/utils/quality_analytics.py
*/utils/startup_orchestrator.py
*/utils/time_parser.py
*/utils/gpu_detection.py
*/utils/db_utils.py
*/utils/content_splitter.py
*/utils/debug.py
# HTTP client - minimal usage
*/storage/http_client.py
# Milvus backend - tested in dedicated test-milvus-docker CI job
*/storage/milvus.py
*/storage/milvus_graph.py
# CLI utilities
*/cli/utils.py
# CLI entry points
*/__main__.py
*/mcp_server.py
[report]
precision = 2
show_missing = true
skip_covered = false
exclude_lines =
pragma: no cover
def __repr__
if TYPE_CHECKING:
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
@(abc\.)?abstractmethod