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
GenerateTestReportCmd.Flags().StringP("test-results-dir", "p", "", "Path to the folder containing JSON test result files (required)")
180
+
GenerateTestReportCmd.Flags().StringP("project-path", "r", ".", "The path to the Go project. Default is the current directory. Useful for subprojects")
181
+
GenerateTestReportCmd.Flags().StringP("output-path", "o", "./report", "Path to output the aggregated results (directory)")
182
+
GenerateTestReportCmd.Flags().Float64P("max-pass-ratio", "", 1.0, "The maximum pass ratio threshold for a test to be considered flaky")
183
+
GenerateTestReportCmd.Flags().StringP("codeowners-path", "", "", "Path to the CODEOWNERS file")
184
+
GenerateTestReportCmd.Flags().StringP("repo-path", "", ".", "The path to the root of the repository/project")
185
+
GenerateTestReportCmd.Flags().String("repo-url", "", "The repository URL")
186
+
GenerateTestReportCmd.Flags().String("branch-name", "", "Branch name for the test report")
187
+
GenerateTestReportCmd.Flags().String("head-sha", "", "Head commit SHA for the test report")
188
+
GenerateTestReportCmd.Flags().String("base-sha", "", "Base commit SHA for the test report")
189
+
GenerateTestReportCmd.Flags().String("github-workflow-name", "", "GitHub workflow name for the test report")
190
+
GenerateTestReportCmd.Flags().String("github-workflow-run-url", "", "GitHub workflow run URL for the test report")
191
+
GenerateTestReportCmd.Flags().String("report-id", "", "Optional identifier for the test report. Will be generated if not provided")
192
+
GenerateTestReportCmd.Flags().Bool("race", false, "Enable the race detector")
0 commit comments