Skip to content

Commit 602a2ff

Browse files
committed
feat(resource): allow users to skip the run step
1 parent 55d3053 commit 602a2ff

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

dagster_sqlmesh/resource.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ def run(
237237
start: TimeLike | None = None,
238238
end: TimeLike | None = None,
239239
restate_selected: bool = False,
240+
skip_run: bool = False,
240241
plan_options: PlanOptions | None = None,
241242
run_options: RunOptions | None = None,
242243
) -> t.Iterable[MaterializeResult]:
@@ -287,6 +288,7 @@ def run(
287288
end=end,
288289
select_models=select_models,
289290
restate_selected=restate_selected,
291+
skip_run=skip_run,
290292
plan_options=plan_options,
291293
run_options=run_options,
292294
):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dagster-sqlmesh"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
description = ""
55
authors = [
66
{name = "Reuven Gonzales", email = "reuven@karibalabs.co"}

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)