Source file hashes computed once per setup invocation.
| 58 | |
| 59 | @dataclass |
| 60 | class SourceHashes: |
| 61 | """Source file hashes computed once per setup invocation.""" |
| 62 | |
| 63 | src_hash: str |
| 64 | test_hash: str |
| 65 | source_hash: str |
| 66 | source_files: list[str] |
| 67 | max_tests_dir_mtime: float |
| 68 | |
| 69 | |
| 70 | @dataclass |
no outgoing calls
no test coverage detected