Merge pull request #72745 from ncdc/int-tests-stop-special-casing-KUBE_TEST_ARGS

int tests: stop special casing KUBE_TEST_ARGS
pull/564/head
Kubernetes Prow Robot 2019-01-10 01:18:51 -08:00 committed by GitHub
commit 4fec22b3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -93,12 +93,6 @@ checkEtcdOnPath
# Run cleanup to stop etcd on interrupt or other kill signal.
trap cleanup EXIT
# If a test case is specified, just run once with v1 API version and exit
if [[ -n "${KUBE_TEST_ARGS}" ]]; then
runTests v1
exit 0
fi
# Convert the CSV to an array of API versions to test
IFS=';' read -a apiVersions <<< "${KUBE_TEST_API_VERSIONS}"
for apiVersion in "${apiVersions[@]}"; do