From 9f743932dff7a60e576a6c5b1bd50e4280d0d6af Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Fri, 15 Feb 2019 15:19:26 +1100 Subject: [PATCH] Remove -v from Go testing - becomes too noisy It became super noisy to get all the verbose output in the CI system - so going back to a more quiet system. --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index b306d0f74e..b56958e65c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -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)