9
9
# These jobs are using VMs and Azure-provided Pythons 3.8
10
10
# ###############################################################################
11
11
12
- - template : etc/ci/azure-posix.yml
13
- parameters :
14
- job_name : ubuntu20_cpython
15
- image_name : ubuntu-20.04
16
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
17
- test_suites :
18
- all : venv/bin/pytest -n 2 -vvs
19
-
20
12
- template : etc/ci/azure-posix.yml
21
13
parameters :
22
14
job_name : ubuntu22_cpython
23
15
image_name : ubuntu-22.04
24
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
16
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
25
17
test_suites :
26
18
all : venv/bin/pytest -n 2 -vvs
27
19
28
20
- template : etc/ci/azure-posix.yml
29
21
parameters :
30
- job_name : macos12_cpython
31
- image_name : macOS-12
32
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
22
+ job_name : ubuntu24_cpython
23
+ image_name : ubuntu-24.04
24
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
33
25
test_suites :
34
26
all : venv/bin/pytest -n 2 -vvs
35
27
36
28
- template : etc/ci/azure-posix.yml
37
29
parameters :
38
30
job_name : macos13_cpython
39
31
image_name : macOS-13
40
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
32
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
41
33
test_suites :
42
34
all : venv/bin/pytest -n 2 -vvs
43
35
36
+ - template : etc/ci/azure-posix.yml
37
+ parameters :
38
+ job_name : macos14_cpython
39
+ image_name : macOS-14
40
+ python_versions : ['3.9', '3.10', '3.11', '3.12']
41
+ test_suites :
42
+ all : venv/bin/pytest -n 2 -vvs
43
+
44
44
- template : etc/ci/azure-win.yml
45
45
parameters :
46
46
job_name : win2019_cpython
47
47
image_name : windows-2019
48
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
48
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
49
49
test_suites :
50
50
all : venv\Scripts\pytest -n 2 -vvs
51
51
52
52
- template : etc/ci/azure-win.yml
53
53
parameters :
54
54
job_name : win2022_cpython
55
55
image_name : windows-2022
56
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
56
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
57
57
test_suites :
58
58
all : venv\Scripts\pytest -n 2 -vvs
59
59
@@ -63,12 +63,12 @@ jobs:
63
63
64
64
- template : etc/ci/azure-posix.yml
65
65
parameters :
66
- job_name : ubuntu22_test_all_supported_click_versions
67
- image_name : ubuntu-22 .04
68
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
66
+ job_name : ubuntu24_test_all_supported_click_versions
67
+ image_name : ubuntu-24 .04
68
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
69
69
test_suites :
70
70
click_versions : |
71
- for clk_ver in 8.1.3 8.1.2 8.1.1 8.1.0 8.0.4 8.0.2 8.0.3 8.0.1 7.1.2 7.1.1 7.1 6.7;
71
+ for clk_ver in 8.1.7 8.1.6 8.1.5 8.1.4 8.1. 3 8.1.2 8.1.1 8.1.0 8.0.4 8.0.2 8.0.3 8.0.1 7.1.2 7.1.1 7.1 6.7;
72
72
do
73
73
pip install click==$clk_ver;
74
74
venv/bin/pytest -vvs tests/test_cliutils_progressbar.py;
80
80
81
81
- template : etc/ci/azure-posix.yml
82
82
parameters :
83
- job_name : ubuntu22_cpython_latest_from_pip
84
- image_name : ubuntu-22 .04
85
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
83
+ job_name : ubuntu24_cpython_latest_from_pip
84
+ image_name : ubuntu-24 .04
85
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
86
86
test_suites :
87
87
all : |
88
88
venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .
91
91
92
92
- template : etc/ci/azure-win.yml
93
93
parameters :
94
- job_name : win2019_cpython_latest_from_pip
95
- image_name : windows-2019
96
- python_versions : ["3.9", "3.10", "3.11", "3.12"]
94
+ job_name : win2022_cpython_latest_from_pip
95
+ image_name : windows-2022
96
+ python_versions : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
97
97
test_suites :
98
98
all : |
99
99
venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .
0 commit comments