-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
30 lines (28 loc) · 973 Bytes
/
Copy pathcodecov.yml
File metadata and controls
30 lines (28 loc) · 973 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
# Codecov configuration.
#
# The uploaded Cobertura report already drops the binaries and tools (see
# tarpaulin.toml `exclude-files`): plugmem-cli / plugmem-mcp are exercised by
# integration tests that spawn the built executable, and line coverage cannot
# see a subprocess; the wasm bridge and the cross-target probe run inside wasm
# runtimes. The `ignore` list below mirrors that so Codecov's file tree matches
# the metric.
#
# Both statuses are `informational: true` because the coverage workflow already
# enforces the >= 90% aggregate floor on tarpaulin's local result. Codecov reports
# the number and diff without making an upload-side outage a second gate.
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
ignore:
- "crates/plugmem-cli/src/main.rs"
- "crates/plugmem-mcp"
- "crates/plugmem-napi"
- "tools"
comment:
layout: "reach, diff, files"
require_changes: true