From 21a235e4a2f0f76b69579c3075d5ceb235ba45f3 Mon Sep 17 00:00:00 2001 From: Dmytro Sydorov Date: Fri, 17 Apr 2026 16:14:21 +0200 Subject: [PATCH] chore(run-ginkgo): drop --poll-progress-after/--poll-progress-interval flags --- .github/actions/run-ginkgo/src/execute-tests.sh | 2 -- .github/actions/run-ginkgo/test/execute-tests.bats | 8 -------- 2 files changed, 10 deletions(-) diff --git a/.github/actions/run-ginkgo/src/execute-tests.sh b/.github/actions/run-ginkgo/src/execute-tests.sh index ed16967..408fd48 100755 --- a/.github/actions/run-ginkgo/src/execute-tests.sh +++ b/.github/actions/run-ginkgo/src/execute-tests.sh @@ -13,8 +13,6 @@ GINKGO_ARGS=( "run" "--timeout=${TIMEOUT}" "--procs=${PROCS}" - "--poll-progress-after=20s" - "--poll-progress-interval=10s" "--github-output" "--json-report=${REPORTS_DIR}/report.json" ) diff --git a/.github/actions/run-ginkgo/test/execute-tests.bats b/.github/actions/run-ginkgo/test/execute-tests.bats index 4ed0415..9003cdf 100644 --- a/.github/actions/run-ginkgo/test/execute-tests.bats +++ b/.github/actions/run-ginkgo/test/execute-tests.bats @@ -126,14 +126,6 @@ has_arg() { grep -q "\-\-json-report=" "$MOCK_ARGS_FILE" } -@test "always includes --poll-progress-after" { - cd "$WORK_DIR" - export GINKGO_LABEL="suite" - run bash "$SCRIPT" - [ "$status" -eq 0 ] - has_arg "--poll-progress-after=20s" -} - # --- Additional flags --- @test "additional-ginkgo-flags are appended" {