Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AIP-84 - remove dry_run in post backfill tests #46001

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading