Skip to content

Commit 831be3f

Browse files
committed
debug
1 parent d559de7 commit 831be3f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/flakeguard/cmd/aggregate_results.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package cmd
22

33
import (
4+
"fmt"
45
"log"
56

67
"github.com/smartcontractkit/chainlink-testing-framework/tools/flakeguard/reports"
@@ -26,6 +27,8 @@ var AggregateResultsCmd = &cobra.Command{
2627
log.Fatalf("Error aggregating results: %v", err)
2728
}
2829

30+
fmt.Printf("PROJECT PATH: %s\n", projectPath)
31+
2932
// Map test results to paths
3033
err = reports.MapTestResultsToPaths(allReport, projectPath)
3134
if err != nil {
@@ -70,5 +73,4 @@ func init() {
7073
AggregateResultsCmd.Flags().BoolVarP(&filterFailed, "filter-failed", "f", false, "If true, filter and output only failed tests based on the max-pass-ratio threshold")
7174
AggregateResultsCmd.Flags().StringVarP(&codeOwnersPath, "codeowners-path", "c", "", "Path to the CODEOWNERS file")
7275
AggregateResultsCmd.Flags().StringVarP(&projectPath, "project-path", "r", ".", "The path to the Go project. Default is the current directory. Useful for subprojects")
73-
7476
}

0 commit comments

Comments
 (0)