@@ -15,66 +15,90 @@ jobs:
15
15
test_suites :
16
16
all : make check
17
17
18
+ - template : etc/ci/azure-posix.yml
19
+ parameters :
20
+ job_name : online_ubuntu24_cpython
21
+ image_name : ubuntu-24.04
22
+ python_versions : ['3.10']
23
+ test_suites :
24
+ all : venv/bin/pytest -n 2 -vvs -m 'online'
25
+
26
+ - template : etc/ci/azure-win.yml
27
+ parameters :
28
+ job_name : online_win2022_cpython
29
+ image_name : windows-2022
30
+ python_versions : ['3.10']
31
+ test_suites :
32
+ all : venv\Scripts\pytest -n 2 -vvs -m 'online'
33
+
34
+ - template : etc/ci/azure-posix.yml
35
+ parameters :
36
+ job_name : online_macos14_cpython
37
+ image_name : macOS-14
38
+ python_versions : ['3.10']
39
+ test_suites :
40
+ all : venv/bin/pytest -n 2 -vvs -m 'online'
41
+
18
42
- template : etc/ci/azure-posix.yml
19
43
parameters :
20
44
job_name : ubuntu22_cpython
21
45
image_name : ubuntu-22.04
22
46
python_versions : ['3.9', '3.10', '3.11', '3.12']
23
47
test_suites :
24
- all : venv/bin/pytest -n 2 -vvs
48
+ all : venv/bin/pytest -n 2 -vvs -m 'not online'
25
49
26
50
- template : etc/ci/azure-posix.yml
27
51
parameters :
28
52
job_name : ubuntu24_cpython
29
53
image_name : ubuntu-24.04
30
54
python_versions : ['3.9', '3.10', '3.11', '3.12']
31
55
test_suites :
32
- all : venv/bin/pytest -n 2 -vvs
56
+ all : venv/bin/pytest -n 2 -vvs -m 'not online'
33
57
34
58
- template : etc/ci/azure-posix.yml
35
59
parameters :
36
60
job_name : macos13_cpython
37
61
image_name : macOS-13
38
62
python_versions : ['3.9', '3.10', '3.11', '3.12']
39
63
test_suites :
40
- all : venv/bin/pytest -n 2 -vvs
64
+ all : venv/bin/pytest -n 2 -vvs -m 'not online'
41
65
42
66
- template : etc/ci/azure-posix.yml
43
67
parameters :
44
68
job_name : macos14_cpython
45
69
image_name : macOS-14
46
70
python_versions : ['3.9', '3.10', '3.11', '3.12']
47
71
test_suites :
48
- all : venv/bin/pytest -n 2 -vvs
72
+ all : venv/bin/pytest -n 2 -vvs -m 'not online'
49
73
50
74
- template : etc/ci/azure-posix.yml
51
75
parameters :
52
76
job_name : macos15_cpython
53
77
image_name : macOS-15
54
78
python_versions : ['3.9', '3.10', '3.11', '3.12']
55
79
test_suites :
56
- all : venv/bin/pytest -n 2 -vvs
80
+ all : venv/bin/pytest -n 2 -vvs -m 'not online'
57
81
58
82
- template : etc/ci/azure-win.yml
59
83
parameters :
60
84
job_name : win2019_cpython
61
85
image_name : windows-2019
62
86
python_versions : ['3.9', '3.10', '3.11', '3.12']
63
87
test_suites :
64
- all : venv\Scripts\pytest -n 2 -vvs
88
+ all : venv\Scripts\pytest -n 2 -vvs -m 'not online'
65
89
66
90
- template : etc/ci/azure-win.yml
67
91
parameters :
68
92
job_name : win2022_cpython
69
93
image_name : windows-2022
70
94
python_versions : ['3.9', '3.10', '3.11', '3.12']
71
95
test_suites :
72
- all : venv\Scripts\pytest -n 2 -vvs
96
+ all : venv\Scripts\pytest -n 2 -vvs -m 'not online'
73
97
74
98
- template : etc/ci/azure-win.yml
75
99
parameters :
76
100
job_name : win2025_cpython
77
101
image_name : windows-2025
78
102
python_versions : ['3.9', '3.10', '3.11', '3.12']
79
103
test_suites :
80
- all : venv\Scripts\pytest -n 2 -vvs
104
+ all : venv\Scripts\pytest -n 2 -vvs -m 'not online'
0 commit comments