Skip to content

Commit 00a9c0c

Browse files
committed
Remove skipped runs from summary table in flakeguard reports
1 parent e8dee04 commit 00a9c0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/flakeguard/reports/presentation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func renderSummaryTable(w io.Writer, summary *SummaryData, markdown bool, collap
213213
{"Total Test Runs", fmt.Sprintf("%d", summary.TotalRuns)},
214214
{"Passes", fmt.Sprintf("%d", summary.PassedRuns)},
215215
{"Failures", fmt.Sprintf("%d", summary.FailedRuns)},
216-
{"Skips", fmt.Sprintf("%d", summary.SkippedRuns)},
216+
// {"Skips", fmt.Sprintf("%d", summary.SkippedRuns)},
217217
{"Pass Percent", summary.PassPercent},
218218
}
219219
if markdown {

0 commit comments

Comments
 (0)