Skip to content

Commit b5de778

Browse files
committed
Add test dependencies to windows AP builds
1 parent ea7afea commit b5de778

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.azure-pipelines/windows-steps.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ steps:
2121
displayName: 'Display build info'
2222
condition: and(succeeded(), variables['testRunPlatform'])
2323

24-
- script: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 --junit-xml="$(Build.BinariesDirectory)\test-results.xml" --tempdir="$(Build.BinariesDirectory)\test"
24+
- script: |
25+
python.bat -m ensurepip --user
26+
python.bat -m pip install --user -r Misc/requirements-tests.txt
27+
PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 --junit-xml="$(Build.BinariesDirectory)\test-results.xml" --tempdir="$(Build.BinariesDirectory)\test"
2528
displayName: 'Tests'
2629
condition: and(succeeded(), variables['testRunPlatform'])
2730
env:

0 commit comments

Comments
 (0)