fix(scripts): allow command expansion in integration runner

This commit is contained in:
afjcjsbx 2026-05-07 20:28:07 +02:00
parent 703f630f33
commit 7a8d7fb218
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ services:
- .:/src
working_dir: /src
environment:
PATH: "/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PICOCLAW_MCP_REAL_SERVER_JSON: >-
{"enabled":true,"type":"http","url":"http://mcp-streamable-server:8080/mcp"}
PICOCLAW_MCP_REAL_TOOL_NAME: echo

View file

@ -89,7 +89,7 @@ run_suite() {
fi
echo "==> [$suite_name] running: $TEST_COMMAND"
docker compose "${compose_args[@]}" run --rm "$runner_service" "$TEST_COMMAND"
docker compose "${compose_args[@]}" run --rm "$runner_service" $TEST_COMMAND
)
}