Fix missing tty parameter. (#653)
Smoke Test / Run basic test suite (push) Successful in 3m55s
Details
Publish / Build and publish (push) Successful in 59s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m3s
Details
K8s Deploy Test / Run deploy test suite (push) Failing after 2m59s
Details
Webapp Test / Run webapp test suite (push) Failing after 3m34s
Details
Smoke Test / Run basic test suite (push) Successful in 3m55s
Details
Publish / Build and publish (push) Successful in 59s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m3s
Details
K8s Deploy Test / Run deploy test suite (push) Failing after 2m59s
Details
Webapp Test / Run webapp test suite (push) Failing after 3m34s
Details
parent
80c4b9214b
commit
5c80887215
|
|
@ -155,7 +155,7 @@ def exec_operation(ctx, extra_args):
|
||||||
if global_context.verbose:
|
if global_context.verbose:
|
||||||
print(f"Running compose exec {service_name} {command_to_exec}")
|
print(f"Running compose exec {service_name} {command_to_exec}")
|
||||||
try:
|
try:
|
||||||
ctx.obj.deployer.execute(service_name, command_to_exec, envs=container_exec_env)
|
ctx.obj.deployer.execute(service_name, command_to_exec, envs=container_exec_env, tty=True)
|
||||||
except DeployerException:
|
except DeployerException:
|
||||||
print("container command returned error exit status")
|
print("container command returned error exit status")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue