Kill process if it's still alive, and clean up temporary directories
(self)
| 102 | print('... failed. Manual cleanup may be required.') |
| 103 | |
| 104 | def cleanup(self): |
| 105 | "Kill process if it's still alive, and clean up temporary directories" |
| 106 | self.cleanup_process() |
| 107 | for td in self.dirs: |
| 108 | td.cleanup() |
| 109 | |
| 110 | __del__ = cleanup |
| 111 |
no test coverage detected