Skip to content

Commit 6c064b3

Browse files
authored
Update azure-pipelines.yml
1 parent e35b59a commit 6c064b3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

azure-pipelines.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pr:
77
jobs:
88
- job: linux_311
99
timeoutInMinutes: 180
10-
pool: {vmImage: 'Ubuntu-20.04'}
10+
pool: {vmImage: 'Ubuntu-22.04'}
1111
steps:
1212
- task: UsePythonVersion@0
1313
inputs:
@@ -16,18 +16,19 @@ jobs:
1616
docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
1717
python -m pip install dependency-groups
1818
python -m dependency_groups test | xargs python -m pip install -e.
19-
python ./bin/run_tests.py
19+
python ./bin/run_tests.py --num-processes 2
2020
2121
- job: macos_311
2222
pool: {vmImage: 'macOS-13'}
23+
timeoutInMinutes: 120
2324
steps:
2425
- task: UsePythonVersion@0
2526
inputs:
2627
versionSpec: '3.11'
2728
- bash: |
2829
python -m pip install dependency-groups
2930
python -m dependency_groups test | xargs python -m pip install -e.
30-
python ./bin/run_tests.py --num-processes 2
31+
python ./bin/run_tests.py --num-processes 3
3132
3233
- job: windows_311
3334
pool: {vmImage: 'windows-2019'}
@@ -39,4 +40,4 @@ jobs:
3940
- bash: |
4041
python -m pip install dependency-groups
4142
python -m dependency_groups test | xargs python -m pip install -e.
42-
python ./bin/run_tests.py
43+
python ./bin/run_tests.py --num-processes 2

0 commit comments

Comments
 (0)