From dcdf564567abdae187c4e2be5dbb25b9794b1fbc Mon Sep 17 00:00:00 2001 From: Merlin Pannewitz Date: Thu, 30 Jan 2025 17:34:40 +0100 Subject: [PATCH] Increase retries for nightly tests to 3 --- packages/dito/tests/playwright-nightly.config.ts | 1 + packages/tool-finder/tests/playwright-nightly.config.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/dito/tests/playwright-nightly.config.ts b/packages/dito/tests/playwright-nightly.config.ts index 60112d41..f79875d4 100644 --- a/packages/dito/tests/playwright-nightly.config.ts +++ b/packages/dito/tests/playwright-nightly.config.ts @@ -14,6 +14,7 @@ const config: PlaywrightTestConfig = { fullyParallel: false, workers: 1, projects: allProjects, + retries: 3, // retry more often to allow flaky tests to succeed }; export default config; diff --git a/packages/tool-finder/tests/playwright-nightly.config.ts b/packages/tool-finder/tests/playwright-nightly.config.ts index 60112d41..f79875d4 100644 --- a/packages/tool-finder/tests/playwright-nightly.config.ts +++ b/packages/tool-finder/tests/playwright-nightly.config.ts @@ -14,6 +14,7 @@ const config: PlaywrightTestConfig = { fullyParallel: false, workers: 1, projects: allProjects, + retries: 3, // retry more often to allow flaky tests to succeed }; export default config;