Skip to content

Commit

Permalink
Remove -v from Go testing - becomes too noisy
Browse files Browse the repository at this point in the history
It became super noisy to get all the verbose output in the CI
system - so going back to a more quiet system.
  • Loading branch information
markmandel authored and jkowalski committed Feb 15, 2019
1 parent 4b8c120 commit 087b256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ ifdef NO_RACE_DETECTOR
RACE_DETECTOR_ARGS=
endif

GO_TEST=$(DOCKER_RUN) go test -v $(RACE_DETECTOR_ARGS)
GO_TEST=$(DOCKER_RUN) go test $(RACE_DETECTOR_ARGS)
GO_E2E_TEST_ARGS=--kubeconfig /root/.kube/$(kubeconfig_file)

go_build_base_path=$(mount_path)
Expand Down

0 comments on commit 087b256

Please sign in to comment.