(client: CopilotClient, home: Path, fixture_dir: Path | None)
| 103 | |
| 104 | |
| 105 | async def _dispose_isolated(client: CopilotClient, home: Path, fixture_dir: Path | None) -> None: |
| 106 | with contextlib.suppress(ExceptionGroup): |
| 107 | await client.stop() |
| 108 | with contextlib.suppress(OSError): |
| 109 | shutil.rmtree(home, ignore_errors=True) |
| 110 | if fixture_dir is not None: |
| 111 | with contextlib.suppress(OSError): |
| 112 | shutil.rmtree(fixture_dir, ignore_errors=True) |
| 113 | |
| 114 | |
| 115 | class TestRpcServerPlugins: |
no test coverage detected
searching dependent graphs…