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 f7bdcab commit c537206Copy full SHA for c537206
.github/workflows/tox_matrix.yml
@@ -15,17 +15,12 @@ jobs:
15
with:
16
python-version: ${{ matrix.python-version }}
17
cache: 'pip' # caching pip dependencies
18
- cache-dependency-path: |
19
- requirements/requirements*.txt
20
- requirements*.txt
21
- name: Install requirements
22
run: |
23
- pip install wheel
24
- pip install tox
25
- pip install -r requirements-dev.txt
+ pip install uv
26
env:
27
PIP_EXTRA_INDEX_URL: ${{vars.PIP_EXTRA_INDEX_URL}}
28
- name: Run tox
29
- run: tox -e py -vvv
+ run: uv run --group tox --with tox-uv --no-dev -e py -vvv
30
31
0 commit comments