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 2, 2019
1 parent ec854f1 commit 32e0e2a
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 @@ -71,7 +71,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 32e0e2a

Please sign in to comment.