Add ability to stress test flakes in CI

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2025-01-13 20:00:18 +00:00
parent 41944e5c6e
commit eeab0f21f4

View File

@@ -170,7 +170,8 @@ jobs:
yarn playwright test \
--shard "${{ matrix.runner }}/${{ needs.build.outputs.num-runners }}" \
--project="${{ matrix.project }}" \
${{ (github.event_name == 'pull_request' && matrix.runAllTests == false ) && '--grep-invert @mergequeue' || '' }}
${{ (github.event_name == 'pull_request' && matrix.runAllTests == false ) && '--grep-invert @mergequeue' || '' }} \
${{ contains(github.event.pull_request.labels.*.name, 'Z-Flaky-Test') && '--repeat-each=5' || '' }}
- name: Upload blob report to GitHub Actions Artifacts
if: always()