fix(agent-images): retain SSH client

This commit is contained in:
2026-07-21 17:25:11 +00:00
committed by didericis
parent c845d3fed4
commit a970f974a2
6 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ class TestSandboxEscape(unittest.TestCase):
# base image without producing five confusing
# command-not-found failures down the suite.
missing: list[str] = []
for tool in ("curl", "git", "dig"):
for tool in ("curl", "git", "dig", "ssh"):
r = cls._bottle.exec(f"command -v {tool} >/dev/null 2>&1")
if r.returncode != 0:
missing.append(tool)