Hello again, Was wondering if there's a way to qu...
# prefect-community
r
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
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