Skip to content

Commit f797f0a

Browse files
author
root
committed
Fix CI: Correctly install python-jose in UV environment
1 parent 936d9dd commit f797f0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/shared.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ jobs:
5353
- name: Install the project
5454
run: uv sync --frozen --all-extras --dev --python ${{ matrix.python-version }}
5555

56-
- name: Install jose dependencies
57-
run: uv run --no-sync pip install python-jose types-python-jose
56+
- name: Activate environment and install jose
57+
run: |
58+
uv run --no-sync python -m pip install python-jose types-python-jose
5859
5960
- name: Run pytest
6061
run: uv run --no-sync pytest

0 commit comments

Comments
 (0)