forked from dynaconf/dynaconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
397 lines (348 loc) · 10.3 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
pr:
- master
- releases/*
trigger:
- master
jobs:
- job: 'Adequacy'
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- bash: make clean install run-pre-commit
displayName: 'Adequacy Tests'
- job: 'LinuxInstall'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python setup.py install
dynaconf init -v FOO=running_on_travis -y
dynaconf write toml -v OTHERVALUE=Hello_Travis -y
dynaconf list | grep -c running_on_travis
dynaconf list | grep -c Hello_Travis
dynaconf --version
displayName: 'Install and test cli'
- job: 'LinuxUnit'
dependsOn: Adequacy
variables:
- group: codecov
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- script: source .ci/test.sh
displayName: 'tests'
- script: codecov --token $(SECRET_CODECOV_TOKEN)
displayName: 'Publish Coverage'
condition: eq(variables['python.version'], '3.7')
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'LinuxUnit Python $(python.version)'
condition: succeededOrFailed()
- job: 'LinuxFunctional'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- bash: make test_examples
displayName: 'Functional tests for examples and frameworks'
- job: 'MacOSInstall'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'macOS-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python setup.py install
dynaconf init -v FOO=running_on_travis -y
dynaconf write toml -v OTHERVALUE=Hello_Travis -y
dynaconf list | grep -c running_on_travis
dynaconf list | grep -c Hello_Travis
dynaconf --version
displayName: 'Install and test cli'
- job: 'MacOSUnit'
dependsOn: Adequacy
variables:
- group: codecov
pool:
vmImage: 'macOS-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- script: py.test -v --cov-config .coveragerc --cov=dynaconf -l tests/ --junitxml=junit/test-results.xml -m "not integration"
displayName: 'tests'
- script: codecov --token $(SECRET_CODECOV_TOKEN)
displayName: 'Publish Coverage'
condition: eq(variables['python.version'], '3.7')
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'MacOSUnit Python $(python.version)'
condition: succeededOrFailed()
- job: 'macOSFunctional'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'macOS-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- bash: make test_examples
displayName: 'Functional tests for examples and frameworks'
- job: 'Redis'
dependsOn: Adequacy
variables:
REDIS_ENABLED_FOR_DYNACONF: true
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
docker pull redis:alpine
# Let tests run the container
# docker run -d -p 6379:6379 redis
docker ps -a
displayName: 'Run Redis Container'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- bash: make test_redis
displayName: 'Functional test for redis'
- job: 'Vault'
dependsOn: Adequacy
variables:
VAULT_ENABLED_FOR_DYNACONF: true
VAULT_TOKEN_FOR_DYNACONF: myroot
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
docker pull vault
# Let tests run the container
# docker run -d -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -p 8200:8200 vault
docker ps -a
displayName: 'Run Vault Container'
- script: source .ci/install_dev.sh
displayName: 'Install dependencies'
- bash: make test_vault
displayName: 'Functional test for vault'
- job: 'WindowsUnit'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: vs2017-win2016
strategy:
matrix:
python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
python -m pip install -r requirements_dev.txt
py.test -v -l tests --junitxml=junit/test-results.xml -m "not integration"
displayName: Test
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'WindowsUnit Python $(python.version)'
condition: succeededOrFailed()
- job: 'WindowsInstall'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
pool:
vmImage: vs2017-win2016
strategy:
matrix:
python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python setup.py install
dynaconf init -v FOO=running_on_travis -y
dynaconf write toml -v OTHERVALUE=Hello_Travis -y
dynaconf list | grep -c running_on_travis
dynaconf list | grep -c Hello_Travis
dynaconf --version
displayName: 'Install and test cli'
- job: 'WindowsFunctional'
dependsOn: Adequacy
variables:
DEBUG_LEVEL_FOR_DYNACONF: DEBUG
DJANGO_SETTINGS_MODULE: foo.settings
PYTHONPATH: '.'
pool:
vmImage: vs2017-win2016
strategy:
matrix:
python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install -r requirements_dev.txt
python setup.py install
setlocal enableextensions enabledelayedexpansion
@echo on
pushd example\common & cd & python program.py & popd
pushd example\common-encoding & cd & python program.py & popd
pushd example\ & cd & python full_example.py & popd
pushd example\ & cd & python compat.py & popd
pushd example\app & cd & python app.py & popd
pushd example\app_with_dotenv & cd & python app.py & popd
pushd example\merge_enabled & cd & python app.py & popd
pushd example\new_merge & cd & python app.py & popd
pushd example\dynaconf_merge & cd & python app.py & popd
pushd example\multiple_sources & cd & python app.py & popd
pushd example\multiple_folders & cd & python app.py & popd
pushd example\toml_example\ & cd & python app.py & popd
pushd example\yaml_example\settings_file\ & cd & python app.py & popd
pushd example\yaml_example\yaml_as_extra_config\ & cd & python app.py & popd
pushd example\flask_with_dotenv & cd & flask routes & popd
pushd example\flask_with_toml & cd & flask routes & popd
pushd example\flask_with_yaml & cd & flask routes & popd
pushd example\flask_with_json & cd & flask routes & popd
pushd example\flask_with_commentjson & cd & flask routes & popd
pushd example\flask_with_ini & cd & flask routes & popd
pushd example\validators\with_python\ & cd & python app.py & popd
pushd example\validators\with_toml\ & cd & dynaconf validate & popd
pushd example\toml_with_secrets\ & cd & python program.py & popd
pushd example\envs & cd & python app.py & popd
pushd example\custom_loader & cd & python app.py & popd
pushd example\get_fresh & cd & python app.py & popd
pushd example\includes & cd & python app.py & popd
pushd example\jenkins_secrets_file & cd & python app.py & popd
pushd example\specific_settings_files & cd & python app.py & popd
pushd example\django_example\ & cd & python manage.py test polls -v 2 & popd
pushd example\django_example\ & cd & django-admin test polls -v 2 & popd
displayName: 'Run functional examples'