diff --git a/hack/test-integration.sh b/hack/test-integration.sh index 1e103d87a6..adfe3f3695 100755 --- a/hack/test-integration.sh +++ b/hack/test-integration.sh @@ -44,8 +44,10 @@ runTests() { kube::log::status "Running integration test cases" + # TODO: Re-enable race detection when we switch to a thread-safe etcd client + # KUBE_RACE="-race" KUBE_GOFLAGS="-tags 'integration no-docker' " \ - KUBE_RACE="-race" \ + KUBE_RACE="" \ KUBE_TEST_API_VERSIONS="$1" \ KUBE_API_VERSIONS="v1,experimental/v1" \ "${KUBE_ROOT}/hack/test-go.sh" test/integration diff --git a/test/integration/etcd_tools_test.go b/test/integration/etcd_tools_test.go index 939f0f3072..9eb6b9c58b 100644 --- a/test/integration/etcd_tools_test.go +++ b/test/integration/etcd_tools_test.go @@ -1,4 +1,4 @@ -// +build integration,!no-etcd,!race +// +build integration,!no-etcd /* Copyright 2014 The Kubernetes Authors All rights reserved. diff --git a/test/integration/service_account_test.go b/test/integration/service_account_test.go index ed61dcd5cf..43602aea2d 100644 --- a/test/integration/service_account_test.go +++ b/test/integration/service_account_test.go @@ -1,4 +1,4 @@ -// +build integration,!no-etcd,!race +// +build integration,!no-etcd /* Copyright 2014 The Kubernetes Authors All rights reserved.