This is an automated email from the ASF dual-hosted git repository.
rahulvats 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 8f5152746d8 fix example dags path in test_example_dags unit tests
(#52222)
8f5152746d8 is described below
commit 8f5152746d8ae3952d08182c294dc35f0beb65d6
Author: Rahul Vats <[email protected]>
AuthorDate: Thu Jul 3 19:03:59 2025 +0530
fix example dags path in test_example_dags unit tests (#52222)
fix example dags path in test_example_dags unit tests
---
airflow-core/tests/unit/always/test_example_dags.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/tests/unit/always/test_example_dags.py
b/airflow-core/tests/unit/always/test_example_dags.py
index 442a33db42c..01ea301f319 100644
--- a/airflow-core/tests/unit/always/test_example_dags.py
+++ b/airflow-core/tests/unit/always/test_example_dags.py
@@ -112,7 +112,7 @@ def get_python_excluded_providers_folders() -> list[str]:
def example_not_excluded_dags(xfail_db_exception: bool = False):
example_dirs = [
- "airflow/**/example_dags/example_*.py",
+ "airflow-core/**/example_dags/example_*.py",
"tests/system/**/example_*.py",
"providers/**/example_*.py",
]