Skip to content

Commit ec69f35

Browse files
run style check models
1 parent 913a02a commit ec69f35

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/core/test_context.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1208,13 +1208,14 @@ def test_plan_seed_model_excluded_from_default_end(copy_to_temp_path: t.Callable
12081208

12091209
# the plan start date 2025-01-01 is after the seeds end date but shouldnt cause the plan to fail
12101210
plan = context.plan(
1211-
"dev",
1212-
start="2025-01-01",
1213-
no_prompts=True,
1214-
select_models=["*waiter_summary"]
1211+
"dev", start="2025-01-01", no_prompts=True, select_models=["*waiter_summary"]
12151212
)
12161213

12171214
# the end should fall back to execution_time rather than seeds end
1215+
assert plan.models_to_backfill == {
1216+
'"duckdb"."sushi"."waiter_names"',
1217+
'"duckdb"."sushi"."waiter_summary"',
1218+
}
12181219
assert plan.provided_end is None
12191220
assert plan.provided_start == "2025-01-01"
12201221
assert to_timestamp(plan.end) == to_timestamp("2026-03-01")

0 commit comments

Comments
 (0)