(msg: str)
| 79 | test_modules: list[str] = [] # Modules which are deemed "test" (vs "fixture") |
| 80 | |
| 81 | def _case_fail(msg: str) -> NoReturn: |
| 82 | pytest.fail(f"{case.file}:{case.line}: {msg}", pytrace=False) |
| 83 | |
| 84 | # Process the parsed items. Each item has a header of form [id args], |
| 85 | # optionally followed by lines of text. |
no test coverage detected
searching dependent graphs…