https://prefect.io logo
r

Riley Hun

08/11/2020, 4:49 AM
Hello again, Was wondering if there's a way to quickly test a flow using docker storage without actually registering it to the UI. Thanks so much in advance. Cheers, Riley
j

josh

08/11/2020, 12:18 PM
Hmm the way I would go about doing it would be to run the container that your flow is stored in and grab the flow manually with something like:
Copy code
from prefect import Flow

my_flow = Flow.load('name_of_flow_OR_abs_path')

my_flow.run()
Unless you had something else in mind