()
| 220 | |
| 221 | |
| 222 | def main() -> None: |
| 223 | from ci.util.check_files import run_checker_standalone |
| 224 | |
| 225 | checker = UnitTestChecker() |
| 226 | run_checker_standalone( |
| 227 | checker, |
| 228 | [str(TESTS_ROOT)], |
| 229 | "Found bare doctest macros or direct doctest.h includes", |
| 230 | ) |
| 231 | |
| 232 | |
| 233 | if __name__ == "__main__": |
no test coverage detected