|
9 | 9 |
|
10 | 10 | - template: etc/ci/azure-posix.yml
|
11 | 11 | parameters:
|
12 |
| - job_name: ubuntu18_cpython |
13 |
| - image_name: ubuntu-18.04 |
14 |
| - python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10'] |
| 12 | + job_name: ubuntu22_cpython |
| 13 | + image_name: ubuntu-22.04 |
| 14 | + python_versions: ['3.8', '3.9', '3.10'] |
15 | 15 | test_suites:
|
16 |
| - all: venv/bin/pytest -n 2 -vvs |
| 16 | + all: | |
| 17 | + sudo apt-get -y update |
| 18 | + sudo apt-get -y install build-essential strace graphviz |
| 19 | + venv/bin/pytest -n 2 -vvs |
| 20 | +
|
17 | 21 |
|
18 | 22 | - template: etc/ci/azure-posix.yml
|
19 | 23 | parameters:
|
20 | 24 | job_name: ubuntu20_cpython
|
21 | 25 | image_name: ubuntu-20.04
|
22 |
| - python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10'] |
| 26 | + python_versions: ['3.8', '3.9', '3.10'] |
23 | 27 | test_suites:
|
24 |
| - all: venv/bin/pytest -n 2 -vvs |
| 28 | + all: | |
| 29 | + sudo apt-get -y update |
| 30 | + sudo apt-get -y install build-essential strace graphviz |
| 31 | + venv/bin/pytest -n 2 -vvs |
25 | 32 |
|
26 | 33 | - template: etc/ci/azure-posix.yml
|
27 | 34 | parameters:
|
|
39 | 46 | test_suites:
|
40 | 47 | all: venv/bin/pytest -n 2 -vvs
|
41 | 48 |
|
| 49 | + - template: etc/ci/azure-posix.yml |
| 50 | + parameters: |
| 51 | + job_name: macos12_cpython |
| 52 | + image_name: macos-12 |
| 53 | + python_versions: ['3.8', '3.9', '3.10'] |
| 54 | + test_suites: |
| 55 | + all: venv/bin/pytest -n 2 -vvs |
| 56 | + |
42 | 57 | - template: etc/ci/azure-win.yml
|
43 | 58 | parameters:
|
44 | 59 | job_name: win2019_cpython
|
|
0 commit comments