diff options
Diffstat (limited to 'magefile.go')
-rw-r--r-- | magefile.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/magefile.go b/magefile.go index bd9c5b830..2fc2c7f75 100644 --- a/magefile.go +++ b/magefile.go @@ -174,13 +174,13 @@ func Test386() error { // Run tests func Test() error { env := map[string]string{"GOFLAGS": testGoFlags()} - return runCmd(env, goexe, "test", "./...", buildFlags(), "-tags", buildTags()) + return runCmd(env, goexe, "test", "./...", "-tags", buildTags()) } // Run tests with race detector func TestRace() error { env := map[string]string{"GOFLAGS": testGoFlags()} - return runCmd(env, goexe, "test", "-race", "./...", buildFlags(), "-tags", buildTags()) + return runCmd(env, goexe, "test", "-race", "./...", "-tags", buildTags()) } // Run gofmt linter |