Skip to content

Commit b3987b2

Browse files
committed
fix: Use uv run to execute tests in CI/CD workflow
The tests were failing because uv sync creates a virtual environment but the test command was using the system Python. Using 'uv run' ensures the tests run in the correct virtual environment with all dependencies installed.
1 parent e62328f commit b3987b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
uv sync
2020
- name: Run the tests
2121
run: |
22-
python pythonie/manage.py test pythonie --verbosity=2
22+
uv run python pythonie/manage.py test pythonie --verbosity=2

0 commit comments

Comments
 (0)