From 1d804629b6d2437608eafbc97fa2284411413691 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Thu, 16 Apr 2015 15:41:03 +0900 Subject: [PATCH] Escape integration test codes from unit tests --- hack/test-go.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/test-go.sh b/hack/test-go.sh index 20b782d3be3..f2d787950ab 100755 --- a/hack/test-go.sh +++ b/hack/test-go.sh @@ -35,6 +35,7 @@ kube::test::find_dirs() { -o -wholename '*/third_party/*' \ -o -wholename '*/Godeps/*' \ -o -wholename '*/contrib/podex/*' \ + -o -wholename '*/test/integration/*' \ \) -prune \ \) -name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./||' | sort -u )