From 0db50a2357e114a6f191684cc6ac05f69b07af74 Mon Sep 17 00:00:00 2001 From: phact Date: Thu, 18 Dec 2025 17:21:24 -0500 Subject: [PATCH] sdk tests dev dependency install --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1a2da7ed..a1104cb3 100644 --- a/Makefile +++ b/Makefile @@ -267,7 +267,7 @@ test-ci: done; \ echo "Running Python SDK integration tests"; \ cd sdks/python && \ - uv pip install -e ".[dev]" && \ + uv sync --extra dev && \ OPENRAG_URL=http://localhost:3000 uv run pytest tests/test_integration.py -vv -s || TEST_RESULT=1; \ cd ../..; \ echo "Running TypeScript SDK integration tests"; \ @@ -363,7 +363,7 @@ test-ci-local: done; \ echo "Running Python SDK integration tests"; \ cd sdks/python && \ - uv pip install -e ".[dev]" && \ + uv sync --extra dev && \ OPENRAG_URL=http://localhost:3000 uv run pytest tests/test_integration.py -vv -s || TEST_RESULT=1; \ cd ../..; \ echo "Running TypeScript SDK integration tests"; \ @@ -393,7 +393,7 @@ test-sdk: @echo "Make sure OpenRAG backend is running at localhost:8000 (make backend)" @echo "" @echo "Running Python SDK tests..." - cd sdks/python && uv pip install -e ".[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:8000 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