Skip to content

Commit

Permalink
Makefile: remove -i from go test command fixed in golang/go#27285
Browse files Browse the repository at this point in the history
  • Loading branch information
Hector Fernandez committed May 8, 2019
1 parent a2663a4 commit 06c04e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ endif

test:
@echo "Testing..."
$Q go test -mod=vendor $(if $V,-v) -i $(allpackages) # install -race libs to speed up next run
$Q go test -mod=vendor $(if $V,-v) $(allpackages) # install -race libs to speed up next run
ifndef CI
@echo "Testing Outside CI..."
$Q GODEBUG=cgocheck=2 go test -mod=vendor $(allpackages)
Expand Down

0 comments on commit 06c04e5

Please sign in to comment.