(tmpdir)
| 27 | ] |
| 28 | |
| 29 | def __create_addon(tmpdir): |
| 30 | path = os.path.join(tmpdir, 'addon.py') |
| 31 | with open(path, 'w') as file: |
| 32 | file.write(__addon_source) |
| 33 | return path |
| 34 | |
| 35 | def __create_source_file(tmpdir): |
| 36 | path = os.path.join(tmpdir, 'test.c') |
no test coverage detected