Commit 5d379a2c authored by Nikhil Jindal's avatar Nikhil Jindal

Merge pull request #5974 from nikhiljindal/testBranch

Fixing broken hack/test-go.sh
parents a34f39ae 6b69ebda
...@@ -206,7 +206,7 @@ reportCoverageToCoveralls() { ...@@ -206,7 +206,7 @@ reportCoverageToCoveralls() {
} }
# Convert the CSV to an array of API versions to test # Convert the CSV to an array of API versions to test
IFS=',' read -a apiVersions <<< ${KUBE_TEST_API_VERSIONS} IFS=',' read -a apiVersions <<< "${KUBE_TEST_API_VERSIONS}"
for apiVersion in "${apiVersions[@]}"; do for apiVersion in "${apiVersions[@]}"; do
echo "Running tests for APIVersion: $apiVersion" echo "Running tests for APIVersion: $apiVersion"
runTestsForVersion $apiVersion "${@}" runTestsForVersion $apiVersion "${@}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment