(self, args: TestArgs)
| 226 | return self.check("cpp_test", lambda: calculate_cpp_test_fingerprint(args)) |
| 227 | |
| 228 | def check_examples(self, args: TestArgs) -> bool: |
| 229 | cwd = Path.cwd() |
| 230 | if self._mtime_fast_path("examples", cwd / "src", cwd / "examples"): |
| 231 | return False # no change detected via mtime fast-path |
| 232 | return self.check("examples", lambda: calculate_examples_fingerprint(args)) |
| 233 | |
| 234 | def check_python(self) -> bool: |
| 235 | cwd = Path.cwd() |