|
7 | 7 | jobs: |
8 | 8 | - template: etc/ci/azure-posix.yml |
9 | 9 | parameters: |
10 | | - job_name: ubuntu20_cpython |
11 | | - image_name: ubuntu-20.04 |
12 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
13 | | - test_suites: |
14 | | - all: |
15 | | - sudo chmod 0644 /boot/vmlinuz-* && sudo apt install libguestfs-tools |
16 | | - && venv/bin/pytest -n 2 -vvs |
| 10 | + job_name: run_code_checks |
| 11 | + image_name: ubuntu-24.04 |
| 12 | + python_versions: ['3.13'] |
| 13 | + test_suites: |
| 14 | + all: make check |
17 | 15 |
|
18 | 16 | - template: etc/ci/azure-posix.yml |
19 | 17 | parameters: |
20 | | - job_name: ubuntu22_cpython |
21 | | - image_name: ubuntu-22.04 |
22 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
23 | | - test_suites: |
24 | | - all: venv/bin/pytest -n 2 -vvs |
| 18 | + job_name: ubuntu22_cpython |
| 19 | + image_name: ubuntu-22.04 |
| 20 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 21 | + test_suites: |
| 22 | + all: |
| 23 | + sudo chmod 0644 /boot/vmlinuz-* && sudo apt install libguestfs-tools |
| 24 | + && venv/bin/pytest -n 2 -vvs |
| 25 | + - template: etc/ci/azure-posix.yml |
| 26 | + parameters: |
| 27 | + job_name: ubuntu24_cpython |
| 28 | + image_name: ubuntu-24.04 |
| 29 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 30 | + test_suites: |
| 31 | + all: venv/bin/pytest -n 2 -vvs |
25 | 32 |
|
26 | 33 | - template: etc/ci/azure-posix.yml |
27 | 34 | parameters: |
28 | | - job_name: macos12_cpython |
29 | | - image_name: macos-12 |
30 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
31 | | - test_suites: |
32 | | - all: venv/bin/pytest -n 2 -vvs |
| 35 | + job_name: macos13_cpython |
| 36 | + image_name: macOS-13 |
| 37 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 38 | + test_suites: |
| 39 | + all: venv/bin/pytest -n 2 -vvs |
33 | 40 |
|
34 | 41 | - template: etc/ci/azure-posix.yml |
35 | 42 | parameters: |
36 | | - job_name: macos13_cpython |
37 | | - image_name: macos-13 |
38 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
39 | | - test_suites: |
40 | | - all: venv/bin/pytest -n 2 -vvs |
| 43 | + job_name: macos14_cpython |
| 44 | + image_name: macOS-14 |
| 45 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 46 | + test_suites: |
| 47 | + all: venv/bin/pytest -n 2 -vvs |
41 | 48 |
|
42 | 49 | - template: etc/ci/azure-win.yml |
43 | 50 | parameters: |
44 | | - job_name: win2019_cpython |
45 | | - image_name: windows-2019 |
46 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
47 | | - test_suites: |
48 | | - all: venv\Scripts\pytest -n 2 -vvs |
| 51 | + job_name: win2022_cpython |
| 52 | + image_name: windows-2022 |
| 53 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 54 | + test_suites: |
| 55 | + all: venv\Scripts\pytest -n 2 -vvs |
49 | 56 |
|
50 | 57 | - template: etc/ci/azure-win.yml |
51 | 58 | parameters: |
52 | | - job_name: win2022_cpython |
53 | | - image_name: windows-2022 |
54 | | - python_versions: ["3.8", "3.9", "3.10", "3.11"] |
55 | | - test_suites: |
56 | | - all: venv\Scripts\pytest -n 2 -vvs |
| 59 | + job_name: win2025_cpython |
| 60 | + image_name: windows-2025 |
| 61 | + python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
| 62 | + test_suites: |
| 63 | + all: venv\Scripts\pytest -n 2 -vvs |
0 commit comments