Run *.cpp.hpp includes checker standalone.
()
| 115 | |
| 116 | |
| 117 | def main() -> None: |
| 118 | """Run *.cpp.hpp includes checker standalone.""" |
| 119 | from ci.util.check_files import run_checker_standalone |
| 120 | |
| 121 | checker = CppHppIncludesChecker() |
| 122 | run_checker_standalone( |
| 123 | checker, |
| 124 | [str(SRC_ROOT), str(TESTS_ROOT)], |
| 125 | "Found *.cpp.hpp includes in non-build files", |
| 126 | extensions=[".cpp", ".h", ".hpp", ".cpp.hpp"], |
| 127 | ) |
| 128 | |
| 129 | |
| 130 | if __name__ == "__main__": |
no test coverage detected