Skip to content

Commit

Permalink
chore(bidi): no retries on CI
Browse files Browse the repository at this point in the history
This will help to save time that is spent on retries, otherwise we run out of 1h budget on CI when running failing tests.
  • Loading branch information
yury-s committed Dec 19, 2024
1 parent 4c9a116 commit bfb9652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bidi/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const config: Config<PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeW
workers: process.env.CI ? 2 : undefined,
fullyParallel: !process.env.CI,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 3 : 0,
retries: 0, // No retries even on CI for now.
reporter: reporters(),
projects: [],
};
Expand Down

0 comments on commit bfb9652

Please sign in to comment.