-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
26 lines (24 loc) · 872 Bytes
/
Copy pathcodecov.yml
File metadata and controls
26 lines (24 loc) · 872 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
# Codecov configuration.
#
# The uploaded Cobertura report already drops the two binaries (see tarpaulin.toml
# `exclude-files`): elenchus-cli / elenchus-mcp are exercised by integration tests
# that spawn the built executable, and line coverage cannot see a subprocess. The
# `ignore` list below mirrors that so Codecov's file tree matches the metric.
#
# Both statuses are `informational: true` — Codecov reports the number and the diff
# but never fails the check, so coverage guides without gatekeeping merges. Tighten
# (drop `informational`, set a `target`) once the number is where you want it.
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
ignore:
- "crates/elenchus-cli/src/main.rs"
- "crates/elenchus-mcp"
comment:
layout: "reach, diff, files"
require_changes: true