(self)
| 36 | |
| 37 | class DockerExecutorBase(ABC): |
| 38 | def __init__(self): |
| 39 | self.docker_cmd = self._initialize_docker_cmd() |
| 40 | self.executor = WindowsExecutor() if platform.system() == 'Windows' else UnixExecutor() |
| 41 | |
| 42 | @abstractmethod |
| 43 | async def run_command(self, command: str, *args) -> Tuple[int, str, str]: |
no test coverage detected