()
| 33 | # FIXME: files are generates in the source tree so it will cause issues if tests are run with xdist. |
| 34 | @pytest.fixture |
| 35 | def test_files(): |
| 36 | for f in TEST_SOURCE_FILES: |
| 37 | dump_create(f) |
| 38 | yield |
| 39 | for f in TEST_SOURCE_FILES: |
| 40 | dump_remove(f) |
| 41 | |
| 42 | |
| 43 | def test_loadRuleTexts_structure(checker): |
nothing calls this directly
no test coverage detected