Skip to content

Commit

Permalink
no retries in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Osbourne committed Mar 7, 2024
1 parent 276c9a7 commit 04087d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const config = {
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 5 : 0,
/* Don't allow retries */
retries: 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : 6,
// workers: 1,
Expand Down

0 comments on commit 04087d6

Please sign in to comment.