|
1 | 1 |
|
2 | 2 | ################################################################################ |
3 | | -# We use Azure to run the full tests suites on Pythons |
4 | | -# on Windows64, macOS and Linux 64 |
| 3 | +# We use Azure to run the full tests suites on multiple Python 3.x |
| 4 | +# on multiple Windows, macOS and Linux versions all on 64 bits |
| 5 | +# These jobs are using VMs with Azure-provided Python builds |
5 | 6 | ################################################################################ |
6 | 7 |
|
7 | 8 | jobs: |
8 | 9 |
|
9 | | -################################################################################ |
10 | | -# These jobs are using VMs and Azure-provided Pythons |
11 | | -################################################################################ |
12 | | - |
13 | 10 | - template: etc/ci/azure-linux.yml |
14 | 11 | parameters: |
15 | | - job_name: ubuntu16_py3 |
| 12 | + job_name: ubuntu16_cpython |
16 | 13 | image_name: ubuntu-16.04 |
17 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 14 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
18 | 15 | test_suites: |
19 | | - all: tmp/bin/pytest -n 2 -vvs |
| 16 | + all: tmp/bin/pytest -vvs |
20 | 17 |
|
21 | 18 | - template: etc/ci/azure-linux.yml |
22 | 19 | parameters: |
23 | | - job_name: ubuntu18_py3 |
| 20 | + job_name: ubuntu18_cpython |
24 | 21 | image_name: ubuntu-18.04 |
25 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 22 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
26 | 23 | test_suites: |
27 | 24 | all: tmp/bin/pytest -n 2 -vvs |
28 | 25 |
|
29 | 26 | - template: etc/ci/azure-linux.yml |
30 | 27 | parameters: |
31 | | - job_name: ubuntu20_py3 |
| 28 | + job_name: ubuntu20_cpython |
32 | 29 | image_name: ubuntu-20.04 |
33 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 30 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
34 | 31 | test_suites: |
35 | 32 | all: tmp/bin/pytest -n 2 -vvs |
36 | 33 |
|
37 | 34 | - template: etc/ci/azure-mac.yml |
38 | 35 | parameters: |
39 | | - job_name: macos1014_py3 |
| 36 | + job_name: macos1014_cpython |
40 | 37 | image_name: macos-10.14 |
41 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 38 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
42 | 39 | test_suites: |
43 | 40 | all: tmp/bin/pytest -n 2 -vvs |
44 | 41 |
|
45 | 42 | - template: etc/ci/azure-mac.yml |
46 | 43 | parameters: |
47 | | - job_name: macos1015_py3 |
| 44 | + job_name: macos1015_cpython |
48 | 45 | image_name: macos-10.15 |
49 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 46 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
50 | 47 | test_suites: |
51 | 48 | all: tmp/bin/pytest -n 2 -vvs |
52 | 49 |
|
53 | 50 | - template: etc/ci/azure-win.yml |
54 | 51 | parameters: |
55 | | - job_name: win2017_64_py3 |
| 52 | + job_name: win2016_cpython |
56 | 53 | image_name: vs2017-win2016 |
57 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 54 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
58 | 55 | test_suites: |
59 | | - all: tmp\Scripts\pytest -vvs |
| 56 | + all: tmp\Scripts\pytest -n 2 -vvs |
60 | 57 |
|
61 | 58 | - template: etc/ci/azure-win.yml |
62 | 59 | parameters: |
63 | | - job_name: win2019_64_py3 |
| 60 | + job_name: win2019_cpython |
64 | 61 | image_name: windows-2019 |
65 | | - python_versions: ['3.6', '3.7', '3.8', '3.9',] |
| 62 | + python_versions: ['3.6', '3.7', '3.8', '3.9'] |
66 | 63 | test_suites: |
67 | | - all: tmp\Scripts\pytest -vvs |
| 64 | + all: tmp\Scripts\pytest -n 2 -vvs |
0 commit comments