Run native platform defines checker standalone.
()
| 485 | |
| 486 | |
| 487 | def main() -> None: |
| 488 | """Run native platform defines checker standalone.""" |
| 489 | from ci.util.check_files import run_checker_standalone |
| 490 | |
| 491 | checker = NativePlatformDefinesChecker() |
| 492 | run_checker_standalone( |
| 493 | checker, |
| 494 | [str(SRC_ROOT)], |
| 495 | "Found native platform defines in src/", |
| 496 | ) |
| 497 | |
| 498 | |
| 499 | if __name__ == "__main__": |
no test coverage detected