From 718a2b643b1a87ea4d796151379d1d5f0dd113f6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 7 May 2026 23:48:34 +0000 Subject: [PATCH] ci(codecov): add quiet Codecov config Adds codecov.yml with advisory statuses and disabled comments. Configuration: - Project coverage target: auto with 5% threshold (informational only) - Patch coverage target: 70% with 20% threshold (informational only) - Comments disabled (comment: false) - GitHub check annotations disabled (annotations: false) - Precision: 2 decimal places, round down - Flags: rust-core for tracking Rust execution surface - Ignores: target/, bench/, examples/, benches/ paths This configuration is intentionally quiet and advisory. It provides data for trend tracking without blocking PRs or generating noise in the comment thread. Codecov claim boundary: Rust execution-surface evidence only. Does not prove diff parser, rule evaluation, suppression, renderer, LSP, baseline, mutation, fuzz, or release correctness. https://claude.ai/code/session_01VboXJ243Rjf8hJFzcdVJWE --- codecov.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..0f17a24b --- /dev/null +++ b/codecov.yml @@ -0,0 +1,29 @@ +coverage: + precision: 2 + round: down + range: "50...85" + status: + project: + default: + target: auto + threshold: 5% + informational: true + flags: + - rust-core + patch: + default: + target: 70% + threshold: 20% + informational: true + flags: + - rust-core + +comment: false +github_checks: + annotations: false + +ignore: + - "target/**" + - "bench/**" + - "crates/*/benches/**" + - "crates/*/examples/**"