seanghaeli commented on code in PR #73014:
URL: https://github.com/apache/airflow/pull/73014#discussion_r4051656530


##########
providers/cncf/kubernetes/tests/unit/cncf/kubernetes/test_kube_client.py:
##########
@@ -16,14 +16,115 @@
 # under the License.
 from __future__ import annotations
 
+import os
+import subprocess
+import sys
+import textwrap
 from unittest import mock
 
 import pytest
 
-from airflow.providers.cncf.kubernetes.kube_client import 
_TimeoutAsyncK8sApiClient, get_async_kube_client
+from airflow.providers.cncf.kubernetes.kube_client import (
+    _TimeoutAsyncK8sApiClient,
+    get_async_kube_client,
+    get_kube_client,
+)
+from airflow.providers.common.compat.sdk import AirflowConfigException
 
 from tests_common.test_utils.config import conf_vars
 
+FACTORY_MARKER = "client-from-factory"
+
+
+def build_fake_client():
+    return FACTORY_MARKER
+
+
+class TestKubeClientFactory:

Review Comment:
   Gotcha, added the assertions



-- 
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