Skip to content

Commit a9177da

Browse files
committed
fix: update 'pavelzw/pytest-action' to use uv
1 parent 475d49a commit a9177da

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/validate-code.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,12 @@ jobs:
8383
python-version: ${{ matrix.python-version }}
8484
- name: install uv
8585
uses: astral-sh/setup-uv@v7
86+
- name: install dependencies
8687
with:
8788
python-version: ${{ matrix.python-version }}
88-
- name: install dependencies
89-
env:
90-
UV_SYSTEM_PYTHON: 1
9189
run: |
92-
uv sync --locked --all-extras --dev
90+
uv export --format=requirements.txt --all-extras --dev --group=dev > requirements.txt
91+
pip install -r requirements.txt
9392
# https://github.com/marketplace/actions/run-pytest
9493
- name: perform unit tests (Python ${{ matrix.python-version }})
9594
env:

0 commit comments

Comments
 (0)