We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da94c0 commit a4ffbcdCopy full SHA for a4ffbcd
.github/workflows/python-tests.yml
@@ -22,9 +22,8 @@ jobs:
22
python-version: "${{ matrix.python-version }}"
23
- name: Install dependencies
24
run: |
25
- python -m pip install --upgrade pip
26
- pip install build
27
- pip install .[dev] # Installs dependencies based on pyproject.toml
+ pip install uv
+ uv venv --python "${{ matrix.python-version }}"
28
- name: Run tests
29
30
- python -m unittest discover -s tests
+ uv run python -m unittest discover -s tests
0 commit comments