Skip to content

Commit e092e35

Browse files
authored
test(e2e): no keep going (#6484)
1 parent 9f1d8a4 commit e092e35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hack/lib/e2e.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function e2e::run() {
326326
# Use individual package paths instead of recursive mode to avoid scanning excluded packages
327327
if [[ "$CI" == "true" ]]; then
328328
echo "running e2e tests in CI mode with options: $*"
329-
$GINKGO -v --timeout=2h --randomize-all --randomize-suites --fail-on-empty --keep-going --trace --label-filter="!k:BR" "$*" "${test_packages[@]}"
329+
$GINKGO -v --timeout=2h --randomize-all --randomize-suites --fail-on-empty --trace --label-filter="!k:BR" "$*" "${test_packages[@]}"
330330
else
331331
echo "running e2e tests locally..."
332332
$GINKGO -v --race "$@" "${test_packages[@]}"
@@ -337,7 +337,7 @@ function e2e::run_upgrade() {
337337
e2e::install_old_version
338338
if [[ "$CI" == "true" ]]; then
339339
echo "running upgrade e2e tests in CI mode with options: $*"
340-
$GINKGO -v --tags=upgrade_e2e --timeout=1h --randomize-all --randomize-suites --fail-on-empty --keep-going --trace "$*" "$ROOT/tests/e2e/upgrade"
340+
$GINKGO -v --tags=upgrade_e2e --timeout=1h --randomize-all --randomize-suites --fail-on-empty --trace "$*" "$ROOT/tests/e2e/upgrade"
341341
else
342342
echo "running upgrade e2e tests locally..."
343343
$GINKGO -v --tags=upgrade_e2e --race "$@" "$ROOT/tests/e2e/upgrade"

0 commit comments

Comments
 (0)