fix: use directory flag for isolated pytest execution

This commit is contained in:
Greyson Lalonde
2025-09-12 23:07:44 -04:00
parent 1a8bf47d20
commit 147488b746
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ jobs:
# DURATIONS_ARG="--durations-path=${DURATION_FILE}"
# fi
uv run --package crewai-core pytest \
uv run --package=crewai-core --directory=packages/crewai pytest \
--block-network \
--timeout=30 \
-vv \

View File

@@ -39,4 +39,4 @@ jobs:
run: uv sync --dev --all-extras
- name: Run tests
run: uv run --package crewai-tools pytest -vv
run: uv run --package=crewai-tools --directory=packages/tools pytest -vv