https://prefect.io logo
Title
j

jack

03/22/2023, 10:30 PM
Is there a way to run a prefect flow from command line and be able to halt at a breakpoint during the flow?
1
r

redsquare

03/22/2023, 10:42 PM
cant you just run it in vscode debugger
z

Zanie

03/22/2023, 10:43 PM
You can just
python your_file.py
with a
breakpoint()
in it
j

jack

03/23/2023, 3:20 PM
Got this to work by removing the calls to
submit()
so that the tasks run sequentially.