(self, command: str)
| 101 | return output |
| 102 | |
| 103 | def run_command(self, command: str) -> str: |
| 104 | return subprocess.check_output(self.parameterize(command)).decode("UTF-8") |
| 105 | |
| 106 | def run_single_proc(self, command: str, num_lines_to_read: int = 4) -> str: |
| 107 | proc = subprocess.Popen( |
no test coverage detected