Make the non-accessible directory created in setup() accessible again, otherwise deleting the workingdir will fail.
(self)
| 158 | self.cmd.extend(self.options.extra_args) |
| 159 | |
| 160 | def cleanup(self): |
| 161 | """ |
| 162 | Make the non-accessible directory created in setup() accessible |
| 163 | again, otherwise deleting the workingdir will fail. |
| 164 | """ |
| 165 | os.chmod(self.noaccess, stat.S_IRWXU) |
| 166 | TestController.cleanup(self) |
| 167 | |
| 168 | @property |
| 169 | def will_run(self): |