From 684e18bab208b4a8ddab590221c232bb0d6e6f64 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 11 Jan 2026 11:21:59 +0000 Subject: [PATCH] chore: add test:all shortcuts --- package.json | 2 ++ scripts/test-live-gateway-models-docker.sh | 1 + scripts/test-live-models-docker.sh | 1 + 3 files changed, 4 insertions(+) diff --git a/package.json b/package.json index efa7515bf..05c5cf99d 100644 --- a/package.json +++ b/package.json @@ -105,6 +105,8 @@ "test:docker:qr": "bash scripts/e2e/qr-import-docker.sh", "test:docker:doctor-switch": "bash scripts/e2e/doctor-install-switch-docker.sh", "test:docker:cleanup": "bash scripts/test-cleanup-docker.sh", + "test:docker:all": "pnpm test:docker:live-models && pnpm test:docker:live-gateway && pnpm test:docker:onboard && pnpm test:docker:gateway-network && pnpm test:docker:qr && pnpm test:docker:doctor-switch && pnpm test:docker:cleanup", + "test:all": "pnpm lint && pnpm build && pnpm test && pnpm test:e2e && pnpm test:live && pnpm test:docker:all", "test:install:e2e": "bash scripts/test-install-sh-e2e-docker.sh", "test:install:e2e:openai": "CLAWDBOT_E2E_MODELS=openai bash scripts/test-install-sh-e2e-docker.sh", "test:install:e2e:anthropic": "CLAWDBOT_E2E_MODELS=anthropic bash scripts/test-install-sh-e2e-docker.sh", diff --git a/scripts/test-live-gateway-models-docker.sh b/scripts/test-live-gateway-models-docker.sh index e82c35a90..40a4c065b 100755 --- a/scripts/test-live-gateway-models-docker.sh +++ b/scripts/test-live-gateway-models-docker.sh @@ -18,6 +18,7 @@ docker build -t "$IMAGE_NAME" -f "$ROOT_DIR/Dockerfile" "$ROOT_DIR" echo "==> Run gateway live model tests (profile keys)" docker run --rm -t \ --entrypoint bash \ + -e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \ -e HOME=/home/node \ -e CLAWDBOT_LIVE_TEST=1 \ -e CLAWDBOT_LIVE_GATEWAY=1 \ diff --git a/scripts/test-live-models-docker.sh b/scripts/test-live-models-docker.sh index c3cfd986e..2b58a4308 100755 --- a/scripts/test-live-models-docker.sh +++ b/scripts/test-live-models-docker.sh @@ -18,6 +18,7 @@ docker build -t "$IMAGE_NAME" -f "$ROOT_DIR/Dockerfile" "$ROOT_DIR" echo "==> Run live model tests (profile keys)" docker run --rm -t \ --entrypoint bash \ + -e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \ -e HOME=/home/node \ -e CLAWDBOT_LIVE_TEST=1 \ -e CLAWDBOT_LIVE_ALL_MODELS=1 \