mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
Merge pull request #30336 from fejta/fix
Automatic merge from submit-queue Do not require --test_args to be set Fixes kubernetes/kubernetes#30322 Not all jobs set `GINKGO_TEST_ARGS`, such as many of the gke tests. When this is unset all test to run (or just federated tests if in that mode). <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.kubernetes.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.kubernetes.io/reviews/kubernetes/kubernetes/30336) <!-- Reviewable:end -->
This commit is contained in:
commit
c10f95deea
@ -376,7 +376,10 @@ if [[ "${E2E_DOWN,,}" == "true" ]]; then
|
||||
fi
|
||||
|
||||
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
|
||||
|
||||
# Optionally run tests from the version in kubernetes_skew
|
||||
|
Loading…
Reference in New Issue
Block a user