Skip to content

Commit

Permalink
feature request
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonFZ committed Nov 4, 2024
1 parent 5d9f7d1 commit 2d3a317
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion paraffin/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ def submit(
show_mermaid: bool = typer.Option(
True, help="Visualize the parallel execution graph using Mermaid."
),
skip_unchanged: bool = typer.Option(False, help="Do not re-evaluate unchanged stages."),
dry: bool = typer.Option(False, help="Dry run. Do not submit tasks."),
):
"""Run DVC stages in parallel using Celery."""
from paraffin.worker import app as celery_app
if skip_unchanged:
raise NotImplementedError("Skipping unchanged stages is not yet implemented.")

graph = get_stage_graph(names=names, glob=glob)
custom_queues = get_custom_queue()
Expand Down

0 comments on commit 2d3a317

Please sign in to comment.