(self)
| 13 | class TestMapParser(unittest.TestCase): |
| 14 | @pytest.mark.slow |
| 15 | def test_map_parser(self) -> None: |
| 16 | # If the UNO fixture directory is missing, skip with a warning |
| 17 | if not UNO.exists(): |
| 18 | import warnings |
| 19 | |
| 20 | warnings.warn( |
| 21 | "Skipping TestMapParser::test_map_parser because ci/tests/uno is missing." |
| 22 | ) |
| 23 | self.skipTest("ci/tests/uno missing; skipping map parser test") |
| 24 | map_dump(UNO / "firmware.map") |
| 25 | |
| 26 | |
| 27 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected