Skip to content

Commit

Permalink
Remove -i from 'go test' to allow running unit tests locally with go …
Browse files Browse the repository at this point in the history
…1.11.5 (cf. golang/go#27389) (#202)
  • Loading branch information
pdecat authored and alexsomesan committed Feb 5, 2019
1 parent f838818 commit 726aa56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build: fmtcheck
go build -v .

test: fmtcheck
go test -i $(TEST) || exit 1
go test $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4

Expand Down

0 comments on commit 726aa56

Please sign in to comment.