()
| 189 | |
| 190 | |
| 191 | def main() -> None: |
| 192 | from ci.util.check_files import run_checker_standalone |
| 193 | |
| 194 | checker = TestFileWrapperChecker() |
| 195 | run_checker_standalone( |
| 196 | checker, |
| 197 | [str(TESTS_ROOT)], |
| 198 | "Found test files missing FL_TEST_FILE wrapper", |
| 199 | ) |
| 200 | |
| 201 | |
| 202 | if __name__ == "__main__": |
no test coverage detected