Commit 8ca5759b authored by Erick Fejta's avatar Erick Fejta

Do not require --test_args to be set

parent f2d9aaba
...@@ -376,7 +376,10 @@ if [[ "${E2E_DOWN,,}" == "true" ]]; then ...@@ -376,7 +376,10 @@ if [[ "${E2E_DOWN,,}" == "true" ]]; then
fi fi
if [[ "${E2E_TEST,,}" == "true" ]]; then if [[ "${E2E_TEST,,}" == "true" ]]; then
e2e_go_args+=(--test --test_args="${GINKGO_TEST_ARGS}") e2e_go_args+=(--test)
if [[ -n "${GINKGO_TEST_ARGS:-}" ]]; then
e2e_go_args+=(--test_args="${GINKGO_TEST_ARGS}")
fi
fi fi
# Optionally run tests from the version in kubernetes_skew # Optionally run tests from the version in kubernetes_skew
......
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