reread coverage docs

This commit is contained in:
Patricio Whittingslow
2026-08-24 19:20:55 -03:00
parent aa760e5466
commit fe3fba33a8
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
coverage:
require_ci_to_pass: false
range: 30..100
ignore:
- "examples/**"
- "**/stringers.go"
+10
View File
@@ -35,3 +35,13 @@ 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
}