(tmp_path: Path, content: str, module_name: str)
| 60 | |
| 61 | |
| 62 | def _write_settings(tmp_path: Path, content: str, module_name: str) -> str: |
| 63 | (tmp_path / f"{module_name}.py").write_text(content, encoding="utf-8") |
| 64 | return module_name |
| 65 | |
| 66 | |
| 67 | async def _run_cli(args: list[str]) -> SimpleNamespace: |
no outgoing calls
no test coverage detected
searching dependent graphs…