fix: run tests from package directory context

This commit is contained in:
Greyson Lalonde
2025-09-12 23:27:43 -04:00
parent 18750b67c6
commit 25f83d7a26
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 --directory=packages/crewai pytest \
cd packages/crewai && uv run pytest \
--block-network \
--timeout=30 \
-vv \

View File

@@ -39,4 +39,4 @@ jobs:
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
run: cd packages/tools && uv run pytest -vv