Skip to content

Commit

Permalink
fixup! fixup! Pass go test flags to integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pchila committed Jul 24, 2023
1 parent bf1213a commit 4c0a8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ func (Integration) TestOnRemote(ctx context.Context) error {
extraFlags := make([]string, 0, len(goTestFlags)+3)
extraFlags = append(extraFlags, goTestFlags...)
extraFlags = append(extraFlags, "-test.shuffle", "on",
"-test.timeout", "0", "-test.run", "^("+strings.Join(packageTests, "|")+")$")
"-test.timeout", "0", "-test.run", "'^("+strings.Join(packageTests, "|")+")$'")
params := mage.GoTestArgs{
LogName: testName,
OutputFile: fileName + ".out",
Expand Down

0 comments on commit 4c0a8b9

Please sign in to comment.