We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2b4fa commit 2533eb6Copy full SHA for 2533eb6
tools/flakeguard/cmd/run.go
@@ -252,6 +252,9 @@ var RunTestsCmd = &cobra.Command{
252
Int("count", len(flakyTests)).
253
Str("stability threshold", fmt.Sprintf("%.0f%%", passRatioThreshold*100)).
254
Msg("Found flaky tests")
255
+
256
+ fmt.Fprint(&summaryBuffer, "\nFlakeguard Summary:\n")
257
+ reports.RenderTestReport(&summaryBuffer, mainReport, false, false)
258
flushSummaryAndExit(FlakyTestsExitCode)
259
} else {
260
log.Info().Msg("All tests passed stability requirements")
0 commit comments