(self, workflow_cls=Type[Workflow])
| 41 | assert workflow is not None, "Workflow 'my_workflow' not found in registry" |
| 42 | |
| 43 | def run(self, workflow_cls=Type[Workflow]): |
| 44 | if self.monitor: |
| 45 | self.monitor.log({"rollout": 2}, step=1, commit=True) |
| 46 | return workflow_cls(task=None, model=None).run() |
| 47 | |
| 48 | |
| 49 | class TestPluginLoader(unittest.TestCase): |
no test coverage detected