Skip to content

Commit a4ffbcd

Browse files
committed
Workflow fix
1 parent 9da94c0 commit a4ffbcd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ jobs:
2222
python-version: "${{ matrix.python-version }}"
2323
- name: Install dependencies
2424
run: |
25-
python -m pip install --upgrade pip
26-
pip install build
27-
pip install .[dev] # Installs dependencies based on pyproject.toml
25+
pip install uv
26+
uv venv --python "${{ matrix.python-version }}"
2827
- name: Run tests
2928
run: |
30-
python -m unittest discover -s tests
29+
uv run python -m unittest discover -s tests

0 commit comments

Comments
 (0)