Skip to content

Commit 1d99b50

Browse files
committed
yml change
1 parent 7569f33 commit 1d99b50

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/e2e.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,16 @@ jobs:
7474
- name: Run all e2e tests
7575
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || steps.filter.outputs.e2e-test == 'true'
7676
run: python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/TestRunner.java
77-
# Step to check if there were failures and run retry runner if needed
78-
- name: Check for Failed Tests and Run Retry Runner
77+
# Step to check if there were failures and run retry runner if needed
78+
- name: Check for Failed Tests and Run Retry Test Runner
7979
if: always() # Always run this step to check for failures
80-
run: if [ -f ./plugin/target/failed_scenarios.txt ]; then
81-
echo "Found failed scenarios. Running retry tests."
82-
python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/RetryTestRunner.java
83-
else
84-
echo "No failed scenarios found."
85-
fi
80+
run: |
81+
if [ -f ./plugin/target/failed_scenarios.txt ]; then
82+
echo "Found failed scenarios. Running retry tests."
83+
python3 e2e/src/main/scripts/run_e2e_test.py --testRunner **/${{ matrix.tests }}/**/RetryTestRunner.java
84+
else
85+
echo "No failed scenarios found."
86+
fi
8687
- name: Upload debug files
8788
uses: actions/upload-artifact@v3
8889
if: always()

0 commit comments

Comments
 (0)