-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathazure-pipelines.yml
43 lines (39 loc) · 1.29 KB
/
azure-pipelines.yml
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
####################################################################################################
# AZURE PIPELINES
# These run pytest in the supported Python versions on Linux, MacOS, and Windows
# Separate code quality checks are run only on Linux with the latest Python version
####################################################################################################
trigger:
- master
####################################################################################################
# PLATFORM AND VERSION TESTS
# Run pytest on different platforms and Python versions using the vms template file
####################################################################################################
jobs:
- template: azure-pipelines-vms.yml
parameters:
name: macOS
vmImage: macOS-latest
matrix:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
- template: azure-pipelines-vms.yml
parameters:
name: Linux
vmImage: ubuntu-latest
matrix:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
- template: azure-pipelines-vms.yml
parameters:
name: Windows
vmImage: windows-latest
matrix:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'