|
1 | | - |
2 | 1 | ################################################################################ |
3 | 2 | # We use Azure to run the full tests suites on multiple Python 3.x |
4 | 3 | # on multiple Windows, macOS and Linux versions all on 64 bits |
5 | 4 | # These jobs are using VMs with Azure-provided Python builds |
6 | 5 | ################################################################################ |
7 | 6 |
|
8 | 7 | jobs: |
9 | | - |
10 | 8 | - template: etc/ci/azure-posix.yml |
11 | 9 | parameters: |
12 | 10 | job_name: ubuntu20_cpython |
13 | 11 | image_name: ubuntu-20.04 |
14 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 12 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
15 | 13 | test_suites: |
16 | 14 | all: venv/bin/pytest -n 2 -vvs |
17 | 15 |
|
18 | 16 | - template: etc/ci/azure-posix.yml |
19 | 17 | parameters: |
20 | 18 | job_name: ubuntu22_cpython |
21 | 19 | image_name: ubuntu-22.04 |
22 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 20 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
23 | 21 | test_suites: |
24 | 22 | all: venv/bin/pytest -n 2 -vvs |
25 | 23 |
|
26 | 24 | - template: etc/ci/azure-posix.yml |
27 | 25 | parameters: |
28 | | - job_name: macos11_cpython |
29 | | - image_name: macOS-11 |
30 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 26 | + job_name: macos12_cpython |
| 27 | + image_name: macOS-12 |
| 28 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
31 | 29 | test_suites: |
32 | 30 | all: venv/bin/pytest -n 2 -vvs |
33 | 31 |
|
34 | 32 | - template: etc/ci/azure-posix.yml |
35 | 33 | parameters: |
36 | | - job_name: macos12_cpython |
37 | | - image_name: macOS-12 |
38 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 34 | + job_name: macos13_cpython |
| 35 | + image_name: macOS-13 |
| 36 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
39 | 37 | test_suites: |
40 | 38 | all: venv/bin/pytest -n 2 -vvs |
41 | 39 |
|
42 | 40 | - template: etc/ci/azure-posix.yml |
43 | 41 | parameters: |
44 | | - job_name: macos13_cpython |
45 | | - image_name: macOS-13 |
46 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 42 | + job_name: macos14_cpython_arm64 |
| 43 | + image_name: macOS-14 |
| 44 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
47 | 45 | test_suites: |
48 | 46 | all: venv/bin/pytest -n 2 -vvs |
49 | 47 |
|
50 | 48 | - template: etc/ci/azure-win.yml |
51 | 49 | parameters: |
52 | 50 | job_name: win2019_cpython |
53 | 51 | image_name: windows-2019 |
54 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 52 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
55 | 53 | test_suites: |
56 | 54 | all: venv\Scripts\pytest -n 2 -vvs |
57 | 55 |
|
58 | 56 | - template: etc/ci/azure-win.yml |
59 | 57 | parameters: |
60 | 58 | job_name: win2022_cpython |
61 | 59 | image_name: windows-2022 |
62 | | - python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] |
| 60 | + python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] |
63 | 61 | test_suites: |
64 | 62 | all: venv\Scripts\pytest -n 2 -vvs |
0 commit comments