From 8f8bbbc34a72d694acbc8909ed9ab77a9977a7e7 Mon Sep 17 00:00:00 2001 From: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> Date: Wed, 19 Nov 2025 21:52:27 -0800 Subject: [PATCH] Update test script sleep duration and test type --- .github/workflows/merge-queue-demo.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/merge-queue-demo.yaml b/.github/workflows/merge-queue-demo.yaml index 54f3aea..c623d9b 100644 --- a/.github/workflows/merge-queue-demo.yaml +++ b/.github/workflows/merge-queue-demo.yaml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - name: Run Expensive Test - run: ./scripts/test.sh sleep 2 + run: ./scripts/test.sh sleep 5 # Scenario: Job that only runs on PRs (e.g., quick linting, or checks not needed for merge) pr-exclusive: @@ -46,7 +46,7 @@ jobs: - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - name: Run Flaky Test # Change 'pass' to 'flaky' to simulate flakiness - run: ./scripts/test.sh pass + run: ./scripts/test.sh flaky # Scenario: Semantic Conflict Simulation # This job checks a version file. If two PRs change it incompatibly, this fails.