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))