1
0
mirror of https://github.com/etcd-io/etcd.git synced 2026-02-05 06:46:49 +01:00

Fix robustness tests execution

Remove running the tests for all the packages under ./tests/robustness.
Restore the old behavior of running only the tests from the top-level
robustness package.

Signed-off-by: Ivan Valdes <ivan@vald.es>
This commit is contained in:
Ivan Valdes
2025-12-18 21:58:14 -08:00
parent 6536395288
commit 8fddf7d1fe

View File

@@ -184,10 +184,10 @@ function e2e_pass {
function robustness_pass {
# e2e tests are running pre-build binary. Settings like --race,-cover,-cpu does not have any impact.
KEEP_GOING_TESTS=true \
run_go_tests_expanding_packages ./tests/robustness/... \
-timeout="${TIMEOUT:-30m}" \
"${RUN_ARG[@]}" \
"$@"
run_go_tests ./tests/robustness/... \
-timeout="${TIMEOUT:-30m}" \
"${RUN_ARG[@]}" \
"$@"
}
function integration_e2e_pass {