Skip to content

Commit

Permalink
turn off code cover.
Browse files Browse the repository at this point in the history
  • Loading branch information
monnand committed Jul 3, 2014
1 parent b351578 commit e444bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/test-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e444bf2

Please sign in to comment.