Skip to content

Commit

Permalink
Update gotest.go
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall authored Feb 13, 2025
1 parent 2b1ecc5 commit 01d0cd3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dev-tools/mage/gotest.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func GoTest(ctx context.Context, params GoTestArgs) error {
if mg.Verbose() {
gotestsumArgs = append(gotestsumArgs, "-f", "standard-verbose")
} else {
gotestsumArgs = append(gotestsumArgs, "-f", "standard-verbose")
gotestsumArgs = append(gotestsumArgs, "-f", "standard-quiet")
}
if params.JUnitReportFile != "" {
CreateDir(params.JUnitReportFile)
Expand Down Expand Up @@ -258,7 +258,6 @@ func GoTest(ctx context.Context, params GoTestArgs) error {
"-coverprofile="+params.CoverageProfileFile,
)
}
testArgs = append(testArgs, "-v")

// Pass the go test extra flags BEFORE the RunExpr.
// TL;DR: This is needed to make sure that a -test.run flag specified in the GOTEST_FLAGS environment variable does
Expand Down

0 comments on commit 01d0cd3

Please sign in to comment.