fix: install package-specific extras for tests

This commit is contained in:
Greyson Lalonde
2025-09-12 23:24:21 -04:00
parent fd75cd10de
commit 18750b67c6
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ jobs:
enable-cache: false
- name: Install the project
run: uv sync --all-groups --all-extras
run: uv sync --all-groups && uv sync --package crewai-core --all-extras
- name: Restore test durations
uses: actions/cache/restore@v4

View File

@@ -36,7 +36,7 @@ jobs:
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-groups --all-extras
run: uv sync --all-groups && uv sync --package crewai-tools --all-extras
- name: Run tests
run: uv run --package=crewai-tools --directory=packages/tools pytest -vv