I hit a problem when using the project decorators....
# ask-metaflow
l
I hit a problem when using the project decorators. How can I inspect Runs when a project decorater is used and a branch is specified on the command line (all with argo-worklfows). Do I need to manually craft a namespace? or os there a better way to switch e.g. IPython to find flows in the specific project/branch.
a
if you want to see all runs that executed on argo workflows for a flow, you can switch to
namespace('runtime:argo-workflows')
l
I would like to see the runs of a particular project and branch.
m
namespace('project:my_project')
among us party 1
flow = Flow('HelloFlow').runs('project_branch:my_branch')
👍🏼 1