-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
68 lines (59 loc) · 1.85 KB
/
azure-pipelines.yml
File metadata and controls
68 lines (59 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
trigger:
- main
jobs:
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu2204_cpython
image_name: Ubuntu-22.04
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
test_suites:
all: venv/bin/pytest -n 2 -vvs
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu2404_cpython
image_name: Ubuntu-24.04
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
test_suites:
all: venv/bin/pytest -n 2 -vvs
- template: etc/ci/azure-posix.yml
parameters:
job_name: macos14_cpython
image_name: macOS-14
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
test_suites:
all: venv/bin/pytest -n 2 -vvs
- template: etc/ci/azure-posix.yml
parameters:
job_name: macos15_cpython
image_name: macOS-15
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
test_suites:
all: venv/bin/pytest -n 2 -vvs
- template: etc/ci/azure-windows.yml
parameters:
job_name: windows2022_cpython
image_name: windows-2022
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
- template: etc/ci/azure-windows.yml
parameters:
job_name: windows2025_cpython
image_name: windows-2025
python_versions: ["3.10", "3.11", "3.12", "3.13", "3.14"]
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu2204_latest_deps
image_name: Ubuntu-22.04
python_versions: ["3.12"]
setup_steps:
- bash: pip install -U pip wheel setuptools
- bash: pip install -r requirements-dev.txt
test_suites:
all: venv/bin/pytest -n 2 -vvs
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu_latest_click_versions
image_name: Ubuntu-22.04
python_versions: ["3.12"]
test_suites:
# This will test all versions of Click from 7.0 to the latest in an isolated fashion.
all: ./utils/test-click-versions.sh