Skip to content

Commit c4bf5e3

Browse files
committed
skip retries in CI for now
1 parent a698e1b commit c4bf5e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export default defineConfig({
99
fullyParallel: false,
1010
/* Fail the build on CI if you accidentally left test.only in the source code. */
1111
forbidOnly: Boolean(process.env.CI),
12-
/* Retry on CI only */
13-
retries: process.env.CI ? 2 : 0,
12+
/* Retry on CI only - skipped for now as during exploration it is expected for lot of tests to fail and retries will slow down seeing tests that do pass */
13+
retries: process.env.CI ? 0 : 0,
1414
/* Limit the number of workers on CI, use default locally */
1515
workers: process.env.CI ? 3 : undefined,
1616
globalSetup: './tests/test-setup-e2e.ts',

0 commit comments

Comments
 (0)