8000 Move everything onto the Dev Drive · pypa/pip@bc313b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit bc313b6

Browse files
committed
Move everything onto the Dev Drive
1 parent a41b99a commit bc313b6

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,35 +185,40 @@ jobs:
185185

186186
steps:
187187
- uses: actions/checkout@v4
188-
- uses: actions/setup-python@v5
189-
with:
190-
python-version: ${{ matrix.python }}
191-
allow-prereleases: true
192188

193189
- name: Create a Dev Drive
194190
run: |
195191
./tools/ci/devdrive.ps1 -Drive R -Size 5GB
196-
mkdir R:\Temp
192+
mkdir R:/Temp
197193
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
198200

199201
- run: pip install nox
200202

201203
#< A538 /span> Main check
202204
- name: Run unit tests
205+
working-directory: R:/pip
203206
if: matrix.group == 1
204207
run: >-
205208
nox -s test-${{ matrix.python }} --
206209
-m unit
207210
--verbose --numprocesses auto --showlocals
208211
209212
- name: Run integration tests (group 1)
213+
working-directory: R:/pip
210214
if: matrix.group == 1
211215
run: >-
212216
nox -s test-${{ matrix.python }} --
213217
-m integration -k "not test_install"
214218
--verbose --numprocesses auto --showlocals
215219
216220
- name: Run integration tests (group 2)
221+
working-directory: R:/pip
217222
if: matrix.group == 2
218223
run: >-
219224
nox -s test-${{ matrix.python }} --

0 commit comments

Comments
 (0)
0