(self, file_path, stream_path)
| 98 | self.run_shell_command(cmd) |
| 99 | |
| 100 | def file_to_stream(self, file_path, stream_path): |
| 101 | cmd = [_FILE_TO_STREAM, file_path, '>', stream_path] |
| 102 | self.run_shell_command(cmd) |
| 103 | |
| 104 | @contextlib.contextmanager |
| 105 | def flight_server(self, scenario_name=None): |
nothing calls this directly
no test coverage detected