forked from tonybaloney/wily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
116 lines (98 loc) · 2.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
trigger:
- master
name: $(Year:yy)$(DayOfYear)$(Rev:r)
variables:
majorVer: '1.13.0'
stages:
- stage: Unit_Test
jobs:
- job: 'Test_Linux'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 2
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
pip install pytest pytest-azurepipelines flit mock codecov pydocstyle pytest-cov
flit install
displayName: 'Install dependencies'
- script: |
python -m pytest test/ --cov=wily/
codecov
displayName: 'pytest'
env:
CODECOV_TOKEN: '48f9ff3a-6358-4607-aa5d-9cb7cada539c'
- script: pydocstyle --ignore=D301,D212,D203 wily
displayName: 'pydocstyle'
- job: 'Test_Windows'
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 2
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
pip install flit mock
flit install
displayName: 'Install dependencies'
- script: |
pip install pytest pytest-azurepipelines
pytest test
displayName: 'pytest'
- stage: Package_Test
jobs:
- job: 'Test_Linux_Packaging'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 2
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: python -m pip install --upgrade pip flit
- script: "flit build"
displayName: 'Build package and dependencies'
- job: 'Test_Windows_Packaging'
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 2
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: python -m pip install --upgrade pip flit
- script: "flit build"
displayName: 'Build package and dependencies'