--retries 2

This commit is contained in:
Pierre Jacquier
2024-02-21 07:50:07 -05:00
parent 716fe2b614
commit b169f3c004

View File

@ -66,7 +66,7 @@ jobs:
git push git push
git push origin ${{ github.head_ref }} git push origin ${{ github.head_ref }}
- name: Run ubuntu/chrome flow - name: Run ubuntu/chrome flow
run: yarn playwright test --project="Google Chrome" e2e/playwright/flow-tests.spec.ts --retries 1 run: yarn playwright test --project="Google Chrome" e2e/playwright/flow-tests.spec.ts --retries 2
env: env:
CI: true CI: true
token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }} token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
@ -104,7 +104,7 @@ jobs:
- name: Run macos/safari flow - name: Run macos/safari flow
# safari doesn't work on Ubuntu because of the same reason tauri doesn't (webRTC issues) # safari doesn't work on Ubuntu because of the same reason tauri doesn't (webRTC issues)
# TODO remove this and the matrix and run all tests on ubuntu when this is fixed # TODO remove this and the matrix and run all tests on ubuntu when this is fixed
run: yarn playwright test --project="webkit" e2e/playwright/flow-tests.spec.ts --retries 1 run: yarn playwright test --project="webkit" e2e/playwright/flow-tests.spec.ts --retries 2
env: env:
CI: true CI: true
token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }} token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}