-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
32 lines (31 loc) · 993 Bytes
/
codecov.yml
File metadata and controls
32 lines (31 loc) · 993 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
coverage:
status:
project:
default:
target: auto
threshold: 0%
patch:
default:
target: 80%
# Exclusion decisions are documented in scripts/check-coverage.sh (COVERAGE_EXCLUDES).
# Keep this list in sync with that file.
ignore:
# Process bootstrap + CLI entry points — not unit-testable
- "cmd/server/main.go"
- "cmd/decree/**"
# Generated code (proto, sqlc)
- "api/centralconfig/**"
- "internal/storage/dbstore/**"
# PG store implementations + pool config — thin wrappers, covered by e2e tests only
- "internal/audit/store_pg.go"
- "internal/config/store_pg.go"
- "internal/schema/store_pg.go"
- "internal/storage/postgres.go"
# Redis wrappers — thin wrappers, covered by e2e tests only
- "internal/cache/redis.go"
- "internal/pubsub/redis.go"
# gRPC transport (borderline; ratchet floor is 8%, Codecov-ignored intentionally)
- "sdk/grpctransport/**"
# Non-code
- "cmd/server/openapi.json"
- "docs/**"