From f636bc76952e685f3186318a44affe9d9edd0d41 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 1 Oct 2024 21:39:41 +0200 Subject: [PATCH] test: retry installation tests up to 3 times --- tests/installation/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/installation/playwright.config.ts b/tests/installation/playwright.config.ts index 25ca82017b..f61efa87ff 100644 --- a/tests/installation/playwright.config.ts +++ b/tests/installation/playwright.config.ts @@ -38,7 +38,7 @@ export default defineConfig({ outputDir, testIgnore: '**\/fixture-scripts/**', timeout: 5 * 60 * 1000, - retries: 0, + retries: process.env.CI ? 3 : 0, reporter: reporters(), forbidOnly: !!process.env.CI, workers: 1,