(self)
| 66 | print(msg) |
| 67 | |
| 68 | def create_temp_dir(self): |
| 69 | import tempfile |
| 70 | tmp = tempfile.mkdtemp(prefix='test_interpreters_') |
| 71 | tmp = os.path.realpath(tmp) |
| 72 | self.addCleanup(os_helper.rmtree, tmp) |
| 73 | return tmp |
| 74 | |
| 75 | def write_script(self, *path, text): |
| 76 | filename = os.path.join(*path) |
no test coverage detected