Skip to content

Commit 0df22bc

Browse files
SG-43838 Make Codecov checks advisory with 80% threshold (#1109)
Coverage checks now use informational: true so CI is never blocked by coverage. Patch and project checks only flag below 80% coverage, with a 1% threshold on project to suppress noise from small changes. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 88c31e3 commit 0df22bc

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

codecov.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11

2+
coverage:
3+
status:
4+
project:
5+
default:
6+
# Coverage checks are advisory only - never block CI
7+
informational: true
8+
# Only flag if overall project coverage drops below 80%
9+
target: 80%
10+
# Ignore drops of 1% or less (noise from small changes)
11+
threshold: 1%
12+
patch:
13+
default:
14+
# Coverage checks are advisory only - never block CI
15+
informational: true
16+
# Only flag if less than 80% of new/changed lines are covered
17+
target: 80%
18+
219
ignore:
320
# ignore generated QT files
421
- "**tank/authentication/ui/login_dialog.py"

0 commit comments

Comments
 (0)