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 11, 2019
1 parent 19c909a commit bfd939b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
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
4 changes: 4 additions & 0 deletions vendor/github.com/sirupsen/logrus/terminal_check_js.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions vendor/github.com/sirupsen/logrus/terminal_check_windows.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bfd939b

Please sign in to comment.