-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
45 lines (38 loc) · 1.54 KB
/
Copy pathazure-pipelines.yml
File metadata and controls
45 lines (38 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
################################################################################
# We use Azure to run the full tests suites on Python 3.6
# on Windows (32 and 64), macOS and Linux (64 various distro)
################################################################################
jobs:
################################################################################
# These jobs are using VMs and Azure-provided Python 3.6
################################################################################
- template: etc/ci/azure-linux.yml
parameters:
job_name: ubuntu18_py36
image_name: ubuntu-18.04
python_versions: ['2.7', '3.6', '3.7', '3.8']
test_suites:
all: tmp/bin/pytest -n 2 -vvs
- template: etc/ci/azure-mac.yml
parameters:
job_name: macos1015_py36
image_name: macos-10.15
python_versions: ['2.7', '3.6', '3.7', '3.8']
test_suites:
all: tmp/bin/pytest -n 2 -vvs
- template: etc/ci/azure-win.yml
parameters:
job_name: win2019_32_py36
image_name: windows-2019
python_versions: ['2.7', '3.6', '3.7', '3.8']
python_architecture: x86
test_suites:
all: tmp\Scripts\pytest -vvs
- template: etc/ci/azure-win.yml
parameters:
job_name: win2019_64_py36
image_name: windows-2019
python_versions: ['2.7', '3.6', '3.7', '3.8']
python_architecture: x64
test_suites:
all: tmp\Scripts\pytest -vvs