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 96ca2a61c9d remove dry_run in tests (#46001)
96ca2a61c9d is described below

commit 96ca2a61c9d60c2445f8586a7d9fd5e3b6b5584e
Author: Kalyan R <[email protected]>
AuthorDate: Fri Jan 24 15:02:44 2025 +0530

    remove dry_run in tests (#46001)
---
 tests/api_fastapi/core_api/routes/public/test_backfills.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/api_fastapi/core_api/routes/public/test_backfills.py 
b/tests/api_fastapi/core_api/routes/public/test_backfills.py
index 0a71963c100..1836bae3ac7 100644
--- a/tests/api_fastapi/core_api/routes/public/test_backfills.py
+++ b/tests/api_fastapi/core_api/routes/public/test_backfills.py
@@ -192,7 +192,6 @@ class TestCreateBackfill(TestBackfillEndpoint):
             "max_active_runs": max_active_runs,
             "run_backwards": False,
             "dag_run_conf": {"param1": "val1", "param2": True},
-            "dry_run": False,
         }
         if repro_act is not None:
             data["reprocess_behavior"] = repro_act
@@ -230,7 +229,6 @@ class TestCreateBackfill(TestBackfillEndpoint):
             "max_active_runs": max_active_runs,
             "run_backwards": False,
             "dag_run_conf": {"param1": "val1", "param2": True},
-            "dry_run": False,
             "reprocess_behavior": ReprocessBehavior.NONE,
         }
         response = test_client.post(
@@ -257,7 +255,6 @@ class TestCreateBackfill(TestBackfillEndpoint):
             "max_active_runs": max_active_runs,
             "run_backwards": False,
             "dag_run_conf": {"param1": "val1", "param2": True},
-            "dry_run": False,
             "reprocess_behavior": ReprocessBehavior.NONE,
         }
         response = test_client.post(
@@ -294,7 +291,6 @@ class TestCreateBackfill(TestBackfillEndpoint):
             "max_active_runs": max_active_runs,
             "run_backwards": run_backwards,
             "dag_run_conf": {"param1": "val1", "param2": True},
-            "dry_run": False,
             "reprocess_behavior": repro_act,
         }
         response = test_client.post(

Reply via email to