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 f62b813d366 Skip the team config test until new modular config 
supports it (#58233)
f62b813d366 is described below

commit f62b813d3664534342171dbc23d47cf228ca6095
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Nov 12 17:46:13 2025 +0100

    Skip the team config test until new modular config supports it (#58233)
---
 .../amazon/tests/unit/amazon/aws/executors/ecs/test_ecs_executor.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/providers/amazon/tests/unit/amazon/aws/executors/ecs/test_ecs_executor.py 
b/providers/amazon/tests/unit/amazon/aws/executors/ecs/test_ecs_executor.py
index f01365fa370..c6ff871f4c8 100644
--- a/providers/amazon/tests/unit/amazon/aws/executors/ecs/test_ecs_executor.py
+++ b/providers/amazon/tests/unit/amazon/aws/executors/ecs/test_ecs_executor.py
@@ -35,7 +35,6 @@ from semver import VersionInfo
 
 from airflow.configuration import conf
 from airflow.exceptions import AirflowException
-from airflow.executors import base_executor
 from airflow.executors.base_executor import BaseExecutor
 from airflow.models import TaskInstance
 from airflow.models.taskinstancekey import TaskInstanceKey
@@ -1347,9 +1346,8 @@ class TestEcsExecutorConfig:
                 ecs_executor_config.build_task_kwargs(conf)
 
     # TODO: When merged this needs updating to the actually supported version
-    @pytest.mark.skipif(
-        not hasattr(base_executor, "ExecutorConf"),
-        reason="Test requires a version of airflow which includes updates to 
support multi team",
+    @pytest.mark.skip(
+        reason="Test requires a version of airflow which includes updates to 
support multi team"
     )
     def test_team_config(self):
         # Team name to be used throughout

Reply via email to