| 234 | ) |
| 235 | |
| 236 | class MyPathLike: |
| 237 | def __init__(self, path: str) -> None: |
| 238 | self.path = path |
| 239 | |
| 240 | def __fspath__(self) -> str: |
| 241 | return self.path |
| 242 | |
| 243 | reprec = pytester.inline_run() |
| 244 | reports = reprec.getreports("pytest_runtest_logreport") |
no outgoing calls
searching dependent graphs…