File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -185,35 +185,40 @@ jobs:
185
185
186
186
steps :
187
187
- uses : actions/checkout@v4
188
- - uses : actions/setup-python@v5
189
- with :
190
- python-version : ${{ matrix.python }}
191
- allow-prereleases : true
192
188
193
189
- name : Create a Dev Drive
194
190
run : |
195
191
./tools/ci/devdrive.ps1 -Drive R -Size 5GB
196
- mkdir R:\ Temp
192
+ mkdir R:/ Temp
197
193
echo "TEMP=R:\\Temp" >> $env:GITHUB_ENV
194
+ Copy-Item -Path ${{ github.workspace }} -Destination "R:/pip" -Recurse
195
+
196
+ - uses : actions/setup-python@v5
197
+ with :
198
+ python-version : ${{ matrix.python }}
199
+ allow-prereleases : true
198
200
199
201
- run : pip install nox
200
202
201
203
#<
A538
/span> Main check
202
204
- name : Run unit tests
205
+ working-directory : R:/pip
203
206
if : matrix.group == 1
204
207
run : >-
205
208
nox -s test-${{ matrix.python }} --
206
209
-m unit
207
210
--verbose --numprocesses auto --showlocals
208
211
209
212
- name : Run integration tests (group 1)
213
+ working-directory : R:/pip
210
214
if : matrix.group == 1
211
215
run : >-
212
216
nox -s test-${{ matrix.python }} --
213
217
-m integration -k "not test_install"
214
218
--verbose --numprocesses auto --showlocals
215
219
216
220
- name : Run integration tests (group 2)
221
+ working-directory : R:/pip
217
222
if : matrix.group == 2
218
223
run : >-
219
224
nox -s test-${{ matrix.python }} --
You can’t perform that action at this time.
0 commit comments