From 04087d6c52b1885ecb5557209f97c5eb03d67b0e Mon Sep 17 00:00:00 2001 From: Shane Osbourne Date: Thu, 7 Mar 2024 12:10:55 +0000 Subject: [PATCH] no retries in CI --- playwright.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.js b/playwright.config.js index e132e4dc5..ff759c0c7 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -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,