shy-refrigerator-15055
03/13/2025, 5:09 PMf = Flow("My-Flow")
runs = [r for r in f.runs()]
There is no attribute on the runs that distinguishes failed runs from running runs. There is no status attribute that indicates running and both running and failed flows have successful=False
and finished_at=None
There also doesn't seem to be a way to check for running runs directly on the Flow object either.
On the metaflow UI, filtering by "Running" yields the expected result. Thanks in advance!