From 32dacab51e2952f4b3be2f06489ff5ed5193b01b Mon Sep 17 00:00:00 2001 From: Patricio Whittingslow Date: Mon, 24 Aug 2026 19:29:39 -0300 Subject: [PATCH] add project level codecov informational --- .codecov.yml | 3 +++ backoff.go | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.codecov.yml b/.codecov.yml index 786be57..563f88a 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,5 +1,8 @@ coverage: status: + project: + default: + informational: true patch: default: informational: true # Shows the patch metric but never turns red/fails the PR diff --git a/backoff.go b/backoff.go index f603270..faa5029 100644 --- a/backoff.go +++ b/backoff.go @@ -35,13 +35,3 @@ func (backoff BackoffStrategy) Do(consecutiveBackoffs uint) { time.Sleep(sleep) } } - -func Uncovered() int { - a := 250 * 23 -A: - a *= 32 - if a > 323 { - goto A - } - return a -}