Loading behave_utils/docker.py +2 −1 Original line number Diff line number Diff line Loading @@ -476,8 +476,9 @@ class Container: Run "cmd" to completion inside the container and return the result """ self.is_running(raise_on_exit=True) interactive = input is not None or stdin is not None return run( self.get_exec_args(cmd), self.get_exec_args(cmd, interactive), stdin=stdin, stdout=stdout, stderr=stderr, capture_output=capture_output, check=check, timeout=timeout, input=input, Loading Loading
behave_utils/docker.py +2 −1 Original line number Diff line number Diff line Loading @@ -476,8 +476,9 @@ class Container: Run "cmd" to completion inside the container and return the result """ self.is_running(raise_on_exit=True) interactive = input is not None or stdin is not None return run( self.get_exec_args(cmd), self.get_exec_args(cmd, interactive), stdin=stdin, stdout=stdout, stderr=stderr, capture_output=capture_output, check=check, timeout=timeout, input=input, Loading