Run is-header include checker standalone.
()
| 160 | |
| 161 | |
| 162 | def main() -> None: |
| 163 | """Run is-header include checker standalone.""" |
| 164 | from ci.util.check_files import run_checker_standalone |
| 165 | |
| 166 | checker = IsHeaderIncludeChecker() |
| 167 | run_checker_standalone( |
| 168 | checker, |
| 169 | [str(PLATFORMS_ROOT)], |
| 170 | "FL_IS_* macros have required is_*.h includes", |
| 171 | ) |
| 172 | |
| 173 | |
| 174 | if __name__ == "__main__": |
no test coverage detected