(path: Path)
| 9 | |
| 10 | |
| 11 | def _python_files(path: Path) -> list[Path]: |
| 12 | return [p for p in path.rglob("*.py") if "__pycache__" not in p.parts] |
| 13 | |
| 14 | |
| 15 | def test_gemini_protocol_does_not_import_claude_or_openai_protocols(): |
no outgoing calls
no test coverage detected