Run test path structure checker standalone.
()
| 192 | |
| 193 | |
| 194 | def main() -> None: |
| 195 | """Run test path structure checker standalone.""" |
| 196 | from ci.util.check_files import run_checker_standalone |
| 197 | |
| 198 | checker = TestPathStructureChecker() |
| 199 | run_checker_standalone( |
| 200 | checker, |
| 201 | [str(TESTS_ROOT)], |
| 202 | "Found test files with incorrect path structure", |
| 203 | extensions=[".cpp", ".hpp"], |
| 204 | ) |
| 205 | |
| 206 | |
| 207 | if __name__ == "__main__": |
no test coverage detected