(self, timeout: float | None = None)
| 463 | self._devbox.files.pop(rel_path, None) |
| 464 | |
| 465 | async def result(self, timeout: float | None = None) -> _FakeExecutionResult: |
| 466 | _ = timeout |
| 467 | await self._done.wait() |
| 468 | return _FakeExecutionResult( |
| 469 | stdout=self._stdout, |
| 470 | stderr=self._stderr, |
| 471 | exit_code=self._exit_code, |
| 472 | ) |
| 473 | |
| 474 | async def kill(self, timeout: float | None = None) -> None: |
| 475 | _ = timeout |
no test coverage detected