From 93b5e4702444b2f321f079a23733e89494601373 Mon Sep 17 00:00:00 2001 From: NicoTuxx Date: Tue, 26 Nov 2024 18:01:45 +0100 Subject: [PATCH] ci: increase pw workers limit --- client/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/playwright.config.ts b/client/playwright.config.ts index 17dd5a3de11..a737e1c62ad 100644 --- a/client/playwright.config.ts +++ b/client/playwright.config.ts @@ -21,7 +21,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: undefined, + workers: process.env.CI ? 5 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', webServer: {