This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 93a957dc751 Increase Playwright E2E test retries from 2 to 4 in CI
(#64604)
93a957dc751 is described below
commit 93a957dc7514871939e51b208ed87cb606fd60e2
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Apr 1 21:27:02 2026 +0200
Increase Playwright E2E test retries from 2 to 4 in CI (#64604)
---
airflow-core/src/airflow/ui/playwright.config.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/playwright.config.ts
b/airflow-core/src/airflow/ui/playwright.config.ts
index 35cf5c3af9a..84e5e0d937b 100644
--- a/airflow-core/src/airflow/ui/playwright.config.ts
+++ b/airflow-core/src/airflow/ui/playwright.config.ts
@@ -107,7 +107,7 @@ export default defineConfig({
process.env.CI !== undefined && process.env.CI !== "" ? ["github"] :
["list"],
],
- retries: process.env.CI !== undefined && process.env.CI !== "" ? 2 : 0,
+ retries: process.env.CI !== undefined && process.env.CI !== "" ? 4 : 0,
testDir: "./tests/e2e/specs",
// TODO: Temporarily ignore flaky specs until stabilized