(self, cmd, **kwargs)
| 226 | self.debug = debug |
| 227 | |
| 228 | def run_shell_command(self, cmd, **kwargs): |
| 229 | cmd = ' '.join(cmd) |
| 230 | if self.debug: |
| 231 | log(cmd) |
| 232 | kwargs.update(shell=True) |
| 233 | subprocess.check_call(cmd, **kwargs) |
| 234 | |
| 235 | def json_to_file(self, json_path, arrow_path): |
| 236 | """ |
no test coverage detected