This is an automated email from the ASF dual-hosted git repository.
shahar1 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 503e8072065 Remove the dead cloudant_fake module (#72457)
503e8072065 is described below
commit 503e8072065e1aa15f773e1499e15eedb254e031
Author: Vitor Antoniazzi <[email protected]>
AuthorDate: Mon Sep 14 16:45:41 2026 +0100
Remove the dead cloudant_fake module (#72457)
---
.../tests/unit/always/test_project_structure.py | 1 -
.../airflow/providers/cloudant/cloudant_fake.py | 34 ----------------------
2 files changed, 35 deletions(-)
diff --git a/airflow-core/tests/unit/always/test_project_structure.py
b/airflow-core/tests/unit/always/test_project_structure.py
index 1bbad7dca94..1e44ae13b85 100644
--- a/airflow-core/tests/unit/always/test_project_structure.py
+++ b/airflow-core/tests/unit/always/test_project_structure.py
@@ -77,7 +77,6 @@ class TestProjectStructure:
"providers/apache/hive/tests/unit/apache/hive/plugins/test_hive.py",
"providers/celery/tests/unit/celery/executors/test_celery_executor_utils.py",
"providers/celery/tests/unit/celery/executors/test_default_celery.py",
- "providers/cloudant/tests/unit/cloudant/test_cloudant_fake.py",
"providers/cncf/kubernetes/tests/unit/cncf/kubernetes/executors/test_kubernetes_executor_types.py",
"providers/cncf/kubernetes/tests/unit/cncf/kubernetes/executors/test_kubernetes_executor_utils.py",
"providers/cncf/kubernetes/tests/unit/cncf/kubernetes/operators/test_kubernetes_pod.py",
diff --git a/providers/cloudant/src/airflow/providers/cloudant/cloudant_fake.py
b/providers/cloudant/src/airflow/providers/cloudant/cloudant_fake.py
deleted file mode 100644
index 91b97c72a91..00000000000
--- a/providers/cloudant/src/airflow/providers/cloudant/cloudant_fake.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-from __future__ import annotations
-
-
-class CloudantV1:
- """Phony class to pass mypy when real class is not imported."""
-
- def __init__(self, authenticator):
- pass
-
- def set_service_url(self, service_url: str):
- pass
-
-
-class CouchDbSessionAuthenticator:
- """Phony class to pass mypy when real class is not imported."""
-
- def __init__(self, username: str, password: str):
- pass