You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Check if project dependencies are correctly set up
36
37
iferr:=checkDependencies(projectPath); err!=nil {
@@ -62,6 +63,7 @@ var RunTestsCmd = &cobra.Command{
62
63
SelectedTestPackages: testPackages,
63
64
UseShuffle: useShuffle,
64
65
ShuffleSeed: shuffleSeed,
66
+
OmitOutputsOnSuccess: omitOutputsOnSuccess,
65
67
}
66
68
67
69
// Run the tests
@@ -119,6 +121,7 @@ func init() {
119
121
RunTestsCmd.Flags().StringSlice("skip-tests", nil, "Comma-separated list of test names to skip from running")
120
122
RunTestsCmd.Flags().StringSlice("select-tests", nil, "Comma-separated list of test names to specifically run")
121
123
RunTestsCmd.Flags().Float64("max-pass-ratio", 1.0, "The maximum pass ratio threshold for a test to be considered flaky. Any tests below this pass rate will be considered flaky.")
124
+
RunTestsCmd.Flags().Bool("omit-test-outputs-on-success", true, "Omit test outputs and package outputs for tests that pass")
0 commit comments