Skip to content

Commit

Permalink
remove dry_run in tests (#46001)
Browse files Browse the repository at this point in the history
  • Loading branch information
rawwar authored Jan 24, 2025
1 parent 933b003 commit 96ca2a6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/api_fastapi/core_api/routes/public/test_backfills.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ def test_create_backfill(self, repro_act, repro_exp, session, dag_maker, test_cl
"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
Expand Down Expand Up @@ -230,7 +229,6 @@ def test_dag_not_exist(self, session, test_client):
"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(
Expand All @@ -257,7 +255,6 @@ def test_no_schedule_dag(self, session, dag_maker, test_client):
"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(
Expand Down Expand Up @@ -294,7 +291,6 @@ def test_create_backfill_with_depends_on_past(
"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(
Expand Down

0 comments on commit 96ca2a6

Please sign in to comment.