Skip to content

Commit b8ae233

Browse files
committed
fix: install all extras in CI so optional deps like rich are available for pyright
1 parent ba782ed commit b8ae233

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

makefiles/dev.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
install: venv-setup ## Install dependencies (auto-detects UV/pip, environment-aware)
55
@if [ -n "$$CI" ]; then \
66
echo "CI detected: using frozen UV sync"; \
7-
uv sync --frozen --all-groups --quiet; \
7+
uv sync --frozen --all-groups --all-extras --quiet; \
88
elif command -v uv >/dev/null 2>&1; then \
99
echo "UV available"; \
1010
if echo "$(MAKECMDGOALS)" | grep -q "_dev"; then \

0 commit comments

Comments
 (0)