(self, args)
| 182 | self.command = command |
| 183 | |
| 184 | def run(self, args): |
| 185 | return run_process(self.command + args, stdout=PIPE, stderr=subprocess.STDOUT, check=False).stdout |
| 186 | |
| 187 | def get_output_files(self): |
| 188 | return [] |
nothing calls this directly
no test coverage detected