This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 281b7cc4aab Add missing clear to clear_all (#48496)
281b7cc4aab is described below
commit 281b7cc4aab5ff08be57158454eb4812e9d8bece
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Fri Mar 28 18:09:29 2025 +0100
Add missing clear to clear_all (#48496)
* Add missing clear to clear_all
* Fix compat checks
---
devel-common/src/tests_common/test_utils/db.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/devel-common/src/tests_common/test_utils/db.py
b/devel-common/src/tests_common/test_utils/db.py
index b5c91d318d1..8f62fd604fd 100644
--- a/devel-common/src/tests_common/test_utils/db.py
+++ b/devel-common/src/tests_common/test_utils/db.py
@@ -336,6 +336,7 @@ def clear_dag_specific_permissions():
def clear_all():
clear_db_runs()
clear_db_assets()
+ clear_db_triggers()
clear_db_dags()
clear_db_serialized_dags()
clear_db_dag_code()
@@ -353,4 +354,6 @@ def clear_all():
clear_db_deadline()
clear_dag_specific_permissions()
if AIRFLOW_V_3_0_PLUS:
+ clear_db_backfills()
clear_db_dag_bundles()
+ clear_db_dag_parsing_requests()