(task_id: str = "b1", status: str = "running")
| 22 | |
| 23 | |
| 24 | def _make_state(task_id: str = "b1", status: str = "running") -> TaskStateBase: |
| 25 | return TaskStateBase( |
| 26 | id=task_id, |
| 27 | type="local_bash", |
| 28 | status=status, # type: ignore[arg-type] |
| 29 | description="t", |
| 30 | start_time=0.0, |
| 31 | output_file="/tmp/x", |
| 32 | ) |
| 33 | |
| 34 | |
| 35 | # --------------------------------------------------------------------------- |
no test coverage detected