(client: CopilotClient, home: Path)
| 59 | |
| 60 | |
| 61 | async def _dispose_isolated(client: CopilotClient, home: Path) -> None: |
| 62 | await _stop_client(client) |
| 63 | with contextlib.suppress(OSError): |
| 64 | shutil.rmtree(home, ignore_errors=True) |
| 65 | |
| 66 | |
| 67 | class TestRpcServerMisc: |
no test coverage detected
searching dependent graphs…