From e444bf23f62686b4832c6b28d11b7cc880c91431 Mon Sep 17 00:00:00 2001 From: Nan Deng Date: Wed, 2 Jul 2014 23:08:01 -0700 Subject: [PATCH] turn off code cover. --- hack/test-go.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/test-go.sh b/hack/test-go.sh index 2755c829637..049ede323bd 100755 --- a/hack/test-go.sh +++ b/hack/test-go.sh @@ -39,10 +39,10 @@ find_test_dirs() { cd "${KUBE_TARGET}" if [ "$1" != "" ]; then - go test -race -cover -coverprofile="tmp.out" "$KUBE_GO_PACKAGE/$1" + go test -race "$KUBE_GO_PACKAGE/$1" exit 0 fi for package in $(find_test_dirs); do - go test -race -cover -coverprofile="tmp.out" "${KUBE_GO_PACKAGE}/${package}" + go test -race "${KUBE_GO_PACKAGE}/${package}" done