Merge pull request #14501 from brendandburns/flakes3

Disable race detection for all integration tests
pull/6/head
Brian Grant 2015-09-24 12:55:36 -07:00
commit c7de21f2ea
3 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
// +build integration,!no-etcd,!race
// +build integration,!no-etcd
/*
Copyright 2014 The Kubernetes Authors All rights reserved.

View File

@ -1,4 +1,4 @@
// +build integration,!no-etcd,!race
// +build integration,!no-etcd
/*
Copyright 2014 The Kubernetes Authors All rights reserved.