Go-bindata is showing up in the test runs and failing for some reason.

pull/75/head
Dan Lorenc 2016-05-14 11:33:04 -07:00
parent 7d39206842
commit a184532414
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ set -e
REPO_PATH="k8s.io/minikube"
# Run all test files.
for TEST in $(find -name "*.go" | grep -v vendor | grep -v integration | grep _test.go | cut -d/ -f2- | sed 's|/\w*.go||g' | uniq); do
for TEST in $(find -name "*.go" | grep -v vendor | grep -v integration | grep _test.go | grep -v go-bindata | cut -d/ -f2- | sed 's|/\w*.go||g' | uniq); do
echo $TEST
go test -v ${REPO_PATH}/${TEST}
done