Skip to content

Commit 06c04e5

Browse files
author
Hector Fernandez
committed
Makefile: remove -i from go test command fixed in golang/go#27285
1 parent a2663a4 commit 06c04e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ endif
8080

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

0 commit comments

Comments
 (0)