This is an automated email from the ASF dual-hosted git repository.
choo121600 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 816cc7c2ef3 fix: mark tests as fixme for connections, dag calendar,
dag code, events, and required action pages (#64395)
816cc7c2ef3 is described below
commit 816cc7c2ef344e2d0878b5c9583a0f9088b83234
Author: Yeonguk Choo <[email protected]>
AuthorDate: Sun Mar 29 16:23:11 2026 +0900
fix: mark tests as fixme for connections, dag calendar, dag code, events,
and required action pages (#64395)
---
airflow-core/src/airflow/ui/tests/e2e/specs/connections.spec.ts | 4 ++--
airflow-core/src/airflow/ui/tests/e2e/specs/dag-calendar-tab.spec.ts | 2 +-
airflow-core/src/airflow/ui/tests/e2e/specs/dag-code-tab.spec.ts | 4 ++--
airflow-core/src/airflow/ui/tests/e2e/specs/events-page.spec.ts | 2 +-
airflow-core/src/airflow/ui/tests/e2e/specs/requiredAction.spec.ts | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/airflow-core/src/airflow/ui/tests/e2e/specs/connections.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/connections.spec.ts
index 9d2493f8aab..131cb3a5d59 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/connections.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/connections.spec.ts
@@ -160,7 +160,7 @@ test.describe("Connections Page - CRUD Operations", () => {
await context.close();
});
- test("should create a new connection and display it in list", async () => {
+ test.fixme("should create a new connection and display it in list", async ()
=> {
test.setTimeout(120_000);
await connectionsPage.navigate();
@@ -173,7 +173,7 @@ test.describe("Connections Page - CRUD Operations", () => {
await connectionsPage.verifyConnectionInList(newConnection.connection_id,
newConnection.conn_type);
});
- test("should edit an existing connection", async () => {
+ test.fixme("should edit an existing connection", async () => {
test.setTimeout(120_000);
await connectionsPage.navigate();
diff --git
a/airflow-core/src/airflow/ui/tests/e2e/specs/dag-calendar-tab.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/dag-calendar-tab.spec.ts
index f6160e560e7..11b58a22f1f 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/dag-calendar-tab.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/dag-calendar-tab.spec.ts
@@ -121,7 +121,7 @@ test.describe("DAG Calendar Tab", () => {
// can override the PATCH-to-failed state back to success before tests run
// because the shared testDag may already be unpaused by parallel tests.
- test("verify hover shows correct run states", async () => {
+ test.fixme("verify hover shows correct run states", async () => {
await calendar.switchToHourly();
const states = await calendar.getManualRunStates();
diff --git a/airflow-core/src/airflow/ui/tests/e2e/specs/dag-code-tab.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/dag-code-tab.spec.ts
index f4577873e42..00ef07e9697 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/dag-code-tab.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/dag-code-tab.spec.ts
@@ -31,7 +31,7 @@ test.describe("DAG Code Tab", () => {
await codePage.navigateToCodeTab(dagId);
});
- test("Verify DAG source code is displayed", async () => {
+ test.fixme("Verify DAG source code is displayed", async () => {
await codePage.verifySourceCodeDisplayed();
});
@@ -43,7 +43,7 @@ test.describe("DAG Code Tab", () => {
await codePage.verifyCodeIsScrollable();
});
- test("Verify line numbers are displayed", async () => {
+ test.fixme("Verify line numbers are displayed", async () => {
await codePage.verifyLineNumbersDisplayed();
});
});
diff --git a/airflow-core/src/airflow/ui/tests/e2e/specs/events-page.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/events-page.spec.ts
index d8638e7026a..bf7536c1fa5 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/events-page.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/events-page.spec.ts
@@ -102,7 +102,7 @@ test.describe("Events with Generated Data", () => {
await eventsPage.verifyLogEntriesWithData();
});
- test("verify search for specific event type and filtered results", async ()
=> {
+ test.fixme("verify search for specific event type and filtered results",
async () => {
await eventsPage.navigate();
const initialRowCount = await eventsPage.getTableRowCount();
diff --git a/airflow-core/src/airflow/ui/tests/e2e/specs/requiredAction.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/requiredAction.spec.ts
index 3588720ea4e..e84e09edd9a 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/requiredAction.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/requiredAction.spec.ts
@@ -40,7 +40,7 @@ test.describe("Verify Required Action page", () => {
await context.close();
});
- test("Verify the actions list/table is displayed (or empty state if none)",
async ({ page }) => {
+ test.fixme("Verify the actions list/table is displayed (or empty state if
none)", async ({ page }) => {
const browsePage = new RequiredActionsPage(page);
await browsePage.navigateToRequiredActionsPage();