Commit f4e3c97a authored by Abhi Shah's avatar Abhi Shah

Merge pull request #9539 from quinton-hoole/2015-06-09-fix-e2e.sh

Don't require a space at the end of GINKGO_TEST_ARGS
parents e226f876 e774717f
......@@ -219,7 +219,7 @@ fi
# Jenkins will look at the junit*.xml files for test failures, so don't exit
# with a nonzero error code if it was only tests that failed.
if [[ "${E2E_TEST,,}" == "true" ]]; then
go run ./hack/e2e.go ${E2E_OPT} -v --test --test_args="${GINKGO_TEST_ARGS}--ginkgo.noColor" || true
go run ./hack/e2e.go ${E2E_OPT} -v --test --test_args="${GINKGO_TEST_ARGS} --ginkgo.noColor" || true
fi
# TODO(zml): We have a bunch of legacy Jenkins configs that are
......
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