Skip to content

Commit b77334b

Browse files
committed
test(app-server): avoid sandbox in command stream integration
1 parent b672f17 commit b77334b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_integration_real_binary.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,14 @@ async def scenario() -> None:
100100
)
101101
)
102102
try:
103-
process_id = "codex-python-integration-git-diff"
103+
process_id = "codex-python-integration-command-stream"
104104
subscription = client.events.subscribe({"command/exec/outputDelta"})
105105
command_task = asyncio.create_task(
106106
client.command.execute(
107107
command=["/bin/sh", "-c", f"printf {_COMMAND_OUTPUT_UNDER_TEST}"],
108108
cwd=str(tmp_path),
109109
process_id=process_id,
110+
sandbox_policy=protocol.DangerFullAccessSandboxPolicy(type="dangerFullAccess"),
110111
stream_stdout_stderr=True,
111112
timeout_ms=5000,
112113
)

0 commit comments

Comments
 (0)