-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecov.yml
More file actions
23 lines (22 loc) · 695 Bytes
/
codecov.yml
File metadata and controls
23 lines (22 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
coverage:
status:
project:
default:
target: 82%
threshold: 2%
patch:
default:
target: 80%
threshold: 5%
# Allow some uncovered defensive error handling in new code
informational: false
# Ignore test files and dev-only fixtures in coverage reports.
ignore:
- "**/*_test.go"
- "**/testdata/**"
# cmd/dev-mcp-mock is a development fixture that dev/start.sh
# launches alongside the platform so operators can exercise the
# MCP gateway end-to-end. It is not exercised by go test, has no
# runtime customers, and writing unit tests for a deterministic
# mock would be cargo-cult coverage.
- "cmd/dev-mcp-mock/**"