amoghrajesh commented on code in PR #44424:
URL: https://github.com/apache/airflow/pull/44424#discussion_r1903705826


##########
helm_tests/airflow_core/test_scheduler.py:
##########
@@ -642,15 +644,30 @@ def test_airflow_local_settings(self):
             ("CeleryExecutor", False, {"rollingUpdate": {"partition": 0}}, 
None),
             ("CeleryExecutor", True, {"rollingUpdate": {"partition": 0}}, 
None),
             ("LocalKubernetesExecutor", False, {"rollingUpdate": {"partition": 
0}}, None),
+            ("LocalExecutor,KubernetesExecutor", False, {"rollingUpdate": 
{"partition": 0}}, None),
             (
                 "LocalKubernetesExecutor",
                 True,
                 {"rollingUpdate": {"partition": 0}},
                 {"rollingUpdate": {"partition": 0}},
             ),
+            (
+                "LocalExecutor,KubernetesExecutor",
+                True,
+                {"rollingUpdate": {"partition": 0}},
+                {"rollingUpdate": {"partition": 0}},
+            ),
             ("LocalExecutor", False, {"rollingUpdate": {"partition": 0}}, 
None),
+            ("LocalExecutor,KubernetesExecutor", False, {"rollingUpdate": 
{"partition": 0}}, None),  # noqa: PT014

Review Comment:
   Why do we need the `# noqa: PT014` here and below?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to