Skip to content

Commit 2cfd386

Browse files
committed
test: Re-enable 11_advanced_queries.ipynb notebook in CI
Re-enable advanced queries notebook testing. Restore Makefile to original state - all notebooks now tested. Both 09_svs_vamana.ipynb and 11_advanced_queries.ipynb confirmed working.
1 parent a6ba1a0 commit 2cfd386

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ test-notebooks: ## Run notebook tests
6060
@echo "📓 Running notebook tests"
6161
@echo "🔍 Checking Redis version..."
6262
@if uv run python -c "import redis; from redisvl.redis.connection import supports_svs; client = redis.Redis.from_url('redis://localhost:6379'); exit(0 if supports_svs(client) else 1)" 2>/dev/null; then \
63-
echo "✅ Redis 8.2.0+ detected - running notebooks (excluding 11_advanced_queries.ipynb)"; \
64-
uv run python -m pytest --nbval-lax ./docs/user_guide -vvv --ignore=./docs/user_guide/11_advanced_queries.ipynb $(ARGS); \
63+
echo "✅ Redis 8.2.0+ detected - running all notebooks"; \
64+
uv run python -m pytest --nbval-lax ./docs/user_guide -vvv $(ARGS); \
6565
else \
66-
echo "⚠️ Redis < 8.2.0 detected - skipping SVS and advanced queries notebooks"; \
67-
uv run python -m pytest --nbval-lax ./docs/user_guide -vvv --ignore=./docs/user_guide/09_svs_vamana.ipynb --ignore=./docs/user_guide/11_advanced_queries.ipynb $(ARGS); \
66+
echo "⚠️ Redis < 8.2.0 detected - skipping SVS notebook"; \
67+
uv run python -m pytest --nbval-lax ./docs/user_guide -vvv --ignore=./docs/user_guide/09_svs_vamana.ipynb $(ARGS); \
6868
fi
6969

7070
check: lint test ## Run all checks (lint + test)

0 commit comments

Comments
 (0)