Run .cpp include checker standalone.
()
| 75 | |
| 76 | |
| 77 | def main() -> None: |
| 78 | """Run .cpp include checker standalone.""" |
| 79 | from ci.util.check_files import run_checker_standalone |
| 80 | from ci.util.paths import PROJECT_ROOT |
| 81 | |
| 82 | checker = CppIncludeChecker() |
| 83 | run_checker_standalone( |
| 84 | checker, [str(PROJECT_ROOT / "src")], "Found .cpp file includes" |
| 85 | ) |
| 86 | |
| 87 | |
| 88 | if __name__ == "__main__": |
no test coverage detected