Merge pull request #14024 from ixdy/jenkins-build-test

Auto commit by PR queue bot
pull/6/head
k8s-merge-robot 2015-09-16 13:10:40 -07:00
commit b051f3d3df
1 changed files with 10 additions and 11 deletions

View File

@ -28,17 +28,16 @@ kube::test::find_dirs() {
cd ${KUBE_ROOT} cd ${KUBE_ROOT}
find . -not \( \ find . -not \( \
\( \ \( \
-wholename './output' \ -path './_artifacts/*' \
-o -wholename './_output' \ -o -path './_output/*' \
-o -wholename './_artifacts/' \ -o -path './_gopath/*' \
-o -wholename './_gopath/' \ -o -path './Godeps/*' \
-o -wholename './release' \ -o -path './contrib/podex/*' \
-o -wholename './target' \ -o -path './output/*' \
-o -wholename '*/Godeps/*' \ -o -path './release/*' \
-o -wholename './release*' \ -o -path './target/*' \
-o -wholename '*/contrib/podex/*' \ -o -path './test/e2e/*' \
-o -wholename '*/test/e2e/*' \ -o -path './test/integration/*' \
-o -wholename '*/test/integration/*' \
\) -prune \ \) -prune \
\) -name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./||' | sort -u \) -name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./||' | sort -u
) )