Skip to content

Commit

Permalink
Add ability to stress test flakes in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy committed Jan 13, 2025
1 parent 41944e5 commit eeab0f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/end-to-end-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit eeab0f2

Please sign in to comment.