File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 59
59
name : ' py${{ matrix.python-version }}: ${{ matrix.platform }}'
60
60
runs-on : ${{ matrix.os }}
61
61
timeout-minutes : 15 # expected run time: 2-6 min, depending on platform
62
- env :
63
- PIP_USE_PEP517 : ' 1'
64
- UV_SYSTEM_PYTHON : 1
65
62
66
63
steps :
67
64
- name : checkout
@@ -89,13 +86,13 @@ jobs:
89
86
90
87
- name : install python
91
88
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
92
- run : uv python install ${{ matrix.python-version }}
89
+ run : uv python install ${{ matrix.python-version }} --preview --verbose
93
90
94
91
- name : install dependencies
95
92
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
96
93
env :
97
94
UV_INDEX : ${{ matrix.extra-index-url }}
98
- run : uv pip install --editable ".[test]"
95
+ run : uv pip install --editable ".[test]" --system --verbose
99
96
100
97
- name : run pytest
101
98
if : ${{ steps.changed-files.outputs.python_any_changed == 'true' || inputs.always_run == true }}
You can’t perform that action at this time.
0 commit comments