(reg)
| 23 | |
| 24 | |
| 25 | def _register(reg): |
| 26 | return register_workflow_task( |
| 27 | task_id="wnotify1", |
| 28 | run_id="wf_run1", |
| 29 | workflow_name="demo", |
| 30 | description="demo", |
| 31 | output_file="/tmp/x.json", |
| 32 | progress=WorkflowProgress(), |
| 33 | run=_FakeRun(), |
| 34 | registry=reg, |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | @pytest.fixture |
no test coverage detected