From 391594acc1116b36048400012531b19a491d4ede Mon Sep 17 00:00:00 2001 From: phact Date: Fri, 19 Dec 2025 02:07:16 -0500 Subject: [PATCH] make local test port --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a1104cb3..05b4611d 100644 --- a/Makefile +++ b/Makefile @@ -390,13 +390,13 @@ test-ci-local: # SDK integration tests (requires running OpenRAG instance) test-sdk: @echo "Running SDK integration tests..." - @echo "Make sure OpenRAG backend is running at localhost:8000 (make backend)" + @echo "Make sure OpenRAG is running at localhost:3000 (make up)" @echo "" @echo "Running Python SDK tests..." - cd sdks/python && uv sync --extra dev && OPENRAG_URL=http://localhost:8000 uv run pytest tests/test_integration.py -vv -s + cd sdks/python && uv sync --extra dev && OPENRAG_URL=http://localhost:3000 uv run pytest tests/test_integration.py -vv -s @echo "" @echo "Running TypeScript SDK tests..." - cd sdks/typescript && npm install && npm run build && OPENRAG_URL=http://localhost:8000 npm test + cd sdks/typescript && npm install && npm run build && OPENRAG_URL=http://localhost:3000 npm test lint: @echo "🔍 Running linting checks..."