(path: Path)
| 165 | |
| 166 | |
| 167 | def _is_setup_py(path: Path) -> bool: |
| 168 | if path.name != "setup.py": |
| 169 | return False |
| 170 | contents = path.read_bytes() |
| 171 | return b"setuptools" in contents or b"distutils" in contents |
| 172 | |
| 173 | |
| 174 | def _is_ipdoctest(config: Config, path: Path, parent: Collector) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…