(self, args: TestArgs)
| 220 | return False |
| 221 | |
| 222 | def check_cpp(self, args: TestArgs) -> bool: |
| 223 | cwd = Path.cwd() |
| 224 | if self._mtime_fast_path("cpp_test", cwd / "src", cwd / "tests"): |
| 225 | return False # no change detected via mtime fast-path |
| 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() |