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 Apr 25, 2019
1 parent 15a185b commit 317adcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
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 317adcb

Please sign in to comment.