Skip to content

Commit f1c7d18

Browse files
committed
fix: build-image return code on error
Signed-off-by: OjusWiZard <[email protected]>
1 parent 0104239 commit f1c7d18

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

autonomy/deploy/image.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def build_image( # pylint: disable=too-many-arguments,too-many-locals
8282
version=image_version,
8383
)
8484

85-
subprocess.run( # nosec # pylint: disable=subprocess-run-check
85+
build_process = subprocess.run( # nosec # pylint: disable=subprocess-run-check
8686
[
8787
"docker",
8888
"build",
@@ -110,6 +110,8 @@ def build_image( # pylint: disable=too-many-arguments,too-many-locals
110110
]
111111
)
112112

113+
build_process.check_returncode()
114+
113115

114116
class ImageBuildFailed(Exception):
115117
"""Raise when there's an error while building the agent image."""

tests/test_autonomy/test_cli/test_build_image.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ def test_service_file_missing(
180180
def test_image_build_fail(self) -> None:
181181
"""Test prod build."""
182182

183-
result = self.run_cli(
183+
exit_code, stdout, stderr = self.run_cli_subprocess(
184184
commands=(
185185
"valory/agent:bafybeihyasfforsfualp6jnhh2jj7nreqmws2ygyfnh4p3idmfkm5yxu11",
186186
)
187187
)
188188

189-
assert result.exit_code == 1, result.output
190-
assert "Error occured while downloading agent" in result.output
189+
assert exit_code == 1, stdout
190+
assert "Error occured while downloading agent" in stderr

0 commit comments

Comments
 (0)