From d6ccf88829e825f8d80acf7ae4db22fc10914278 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 02:48:12 +0100 Subject: [PATCH] Update coverage thresholds in codecov.yml: increase project target to 95% and adjust patch target to 50% --- codecov.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/codecov.yml b/codecov.yml index 85e9c12..aea0fce 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,17 +1,17 @@ coverage: status: - # Project coverage status: require ≥ 90% overall, allow up to 2% drop + # Project coverage status: require >= 90% overall, allow up to 2% drop project: default: - target: 90% # overall coverage goal - threshold: 2% # tolerable drop below target before failing - base: auto # compare against default branch + target: 95% # overall coverage goal + threshold: 2% # tolerable drop below target before failing + base: auto # compare against default branch only_pulls: true # enforce on PRs only - # Patch coverage status: require ≥ 95% on new/changed lines, zero tolerance + # Patch coverage status: require >= 95% on new/changed lines, zero tolerance patch: default: - target: 95% # coverage goal for new or changed code - threshold: 0% # no uncovered lines allowed - base: auto # diff against default branch + target: 50% # coverage goal for new or changed code + threshold: 0% # no uncovered lines allowed + base: auto # diff against default branch only_pulls: true