Skip to content

Commit badff9b

Browse files
committed
link issue
1 parent 2af06b8 commit badff9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/app/table_summary.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func (c *consoleWriter) summaryTable(
177177
status = c.red(status)
178178
}
179179

180-
// Skip packages with 0% coverage and no tests to mimic nocoverageredesign behavior
180+
// Skip packages with no coverage to mimic nocoverageredesign behavior (changed in github.com/golang/go/issues/24570)
181181
totalTests := len(pkg.TestsByAction(parse.ActionPass)) + len(pkg.TestsByAction(parse.ActionFail)) + len(pkg.TestsByAction(parse.ActionSkip))
182182
if pkg.Cover && pkg.Coverage == 0.0 && totalTests == 0 {
183183
continue

0 commit comments

Comments
 (0)