()
| 23 | |
| 24 | @pytest.fixture(scope="function") |
| 25 | def checker(): |
| 26 | from addons.misra import MisraChecker, MisraSettings, get_args_parser |
| 27 | parser = get_args_parser() |
| 28 | args = parser.parse_args([]) |
| 29 | settings = MisraSettings(args) |
| 30 | return MisraChecker(settings) |
| 31 | |
| 32 | |
| 33 | # FIXME: files are generates in the source tree so it will cause issues if tests are run with xdist. |
nothing calls this directly
no test coverage detected