Skip to content

Commit

Permalink
Use more shards to reduce chances of test server crashing (#3042)
Browse files Browse the repository at this point in the history
* Use more shards to reduce chances of test server crashing

* increase shards count
  • Loading branch information
cesarvarela committed Aug 27, 2024
1 parent 54282d9 commit d5eba4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-playwright-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
tests:
name: Run Playwright tests
environment: ${{ inputs.environment }}
timeout-minutes: 60
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2, 3, 4]
shardTotal: [4]
shardIndex: [1, 2, 3, 4, 5, 6]
shardTotal: [6]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
tests:
name: Run Playwright tests
environment: ${{ inputs.environment }}
timeout-minutes: 60
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2, 3, 4]
shardTotal: [4]
shardIndex: [1, 2, 3, 4, 5, 6]
shardTotal: [6]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit d5eba4f

Please sign in to comment.