| 745 | |
| 746 | |
| 747 | class DataFileFix(NamedTuple): |
| 748 | lineno: int # 1-offset, inclusive |
| 749 | end_lineno: int # 1-offset, exclusive |
| 750 | lines: list[str] |
| 751 | |
| 752 | |
| 753 | class DataFileCollector(pytest.Collector): |
no outgoing calls
no test coverage detected
searching dependent graphs…