forked from tonybaloney/wily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
176 lines (156 loc) · 4.45 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
trigger:
- master
name: $(Year:yy)$(DayOfYear)$(Rev:r)
variables:
majorVer: '1.19.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'
Python38:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
pip install pytest
pip install --pre pytest-azurepipelines==1.0.0rc1
pip install 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: |
python -m pytest test/unit
displayName: 'Test in german'
env:
LANGUAGE: 'ge'
- script: |
python -m pytest test/unit
displayName: 'Test in japanese'
env:
LANGUAGE: 'ja'
- script: pydocstyle --ignore=D301,D212,D203 src/wily
displayName: 'pydocstyle'
- script: |
wily build src/
wily diff src/ -r HEAD^1
displayName: Compare previous commit
continueOnError: true
- job: 'Test_Windows'
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
pip install flit mock pytest pytest-cov
flit install
displayName: 'Install dependencies'
- script: |
pip install --pre pytest-azurepipelines==1.0.0rc1
python -m pytest test
displayName: 'pytest'
- script: |
python -m pytest test/unit
displayName: 'Test in german'
env:
LANGUAGE: 'ge'
- script: |
python -m pytest test/unit
displayName: 'Test in japanese'
env:
LANGUAGE: 'ja'
- job: 'Test_Conda'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
steps:
- bash: echo "##vso[task.prependpath]$CONDA/bin"
displayName: Add conda to PATH
- bash: |
conda create --yes --quiet --name wilyEnv python=$PYTHON_VERSION
conda config --add channels conda-forge
displayName: Create Anaconda environment
- bash: |
source activate wilyEnv
conda install --yes --quiet --name wilyEnv mock pytest-azurepipelines flit=2.1.0 flit-core=2.1.0
flit install --env
displayName: Install Anaconda packages
- bash: |
source activate wilyEnv
python -m pytest test/
displayName: 'Test package'
- 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'
Python38:
python.version: '3.8'
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'
Python38:
python.version: '3.8'
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'