(self, args)
| 227 | self.filename = final |
| 228 | |
| 229 | def run(self, args): |
| 230 | return run_process([self.filename] + args, stdout=PIPE, stderr=subprocess.STDOUT, check=False).stdout |
| 231 | |
| 232 | def get_output_files(self): |
| 233 | return [self.filename] |
nothing calls this directly
no test coverage detected