From 62ea4f087dc08dc45b4fa6a03d28bf7e924bfba2 Mon Sep 17 00:00:00 2001 From: ilya Date: Thu, 2 Jan 2025 16:04:52 +0000 Subject: [PATCH] Test it --- .github/workflows/pull-request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 372f1670bf..98701aadf4 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -188,7 +188,7 @@ jobs: run-flaky-test: # to debug a flaky test set `if` to true and configure the flaky test in the `run` step - if: ${{ false }} + if: ${{ true }} timeout-minutes: 60 runs-on: ubuntu-latest env: @@ -217,7 +217,7 @@ jobs: attempt=1 while true; do echo "Running test attempt #$attempt" - if ! cargo nextest run -p e2e local_node --test-threads 1 --failure-output final --run-ignored ignored-only; then + if ! cargo nextest run -p e2e forked_node --test-threads 1 --failure-output final --run-ignored ignored-only; then exit 1 fi attempt=$((attempt+1))