-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcodecov.yml
More file actions
25 lines (23 loc) · 960 Bytes
/
codecov.yml
File metadata and controls
25 lines (23 loc) · 960 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
coverage:
status:
project:
default:
target: auto
threshold: 1%
if_ci_failed: error
patch:
default:
informational: true
comment:
layout: "reach, diff, flags, files"
behavior: default
require_changes: false
# Files excluded from coverage. Reserve this list for true CLI/service plumbing —
# entry points, Redis/NATS/LLM glue, six-near-identical I/O writers — where
# meaningful tests would require live infrastructure mocks that cost more than
# the lines they verify. Pure-logic helpers belong in real unit tests instead.
ignore:
- "ares-cli/src/orchestrator/mod.rs" # orchestrator entry point: service composition
- "ares-cli/src/worker/mod.rs" # worker entry point: service composition
- "ares-cli/src/blue/submit.rs" # NATS + Redis glue, no extractable logic
- "ares-cli/src/ops/inject.rs" # six near-identical Redis state writers