forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-dev.yml
554 lines (451 loc) · 18.3 KB
/
azure-pipelines-dev.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
# This file is responsible for configuring the `dev` pipeline (https://dev.azure.com/great-expectations/great_expectations/_build)
#
# The pipeline is run under the following conditions:
# - On the develop branch whenever a commit is made to an open PR
#
# `dev` runs unit tests for any directories that have sufficient coverage and integration tests for those that don't.
# The pipeline aims to balance both performance and safety to improve the developer experience but is innately less thorough than `great_expectations`.
trigger:
branches:
include:
- pre_pr-* # Can be used to test both `great_expectations` and `dependency_graph` pipelines
- develop
exclude:
- main
resources:
containers:
- container: postgres
image: postgres:11
ports:
- 5432:5432
env:
POSTGRES_DB: "test_ci"
POSTGRES_HOST_AUTH_METHOD: "trust"
- container: mysql
image: mysql:8.0.20
ports:
- 3306:3306
env:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: test_ci
- container: mssql
image: mcr.microsoft.com/mssql/server:2019-latest
env:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: ReallyStrongPwd1234%^&*
MSSQL_DB: test_ci
MSSQL_PID: Developer
ports:
- 1433:1433
- container: trino
image: trinodb/trino:379
ports:
- 8088:8080
variables:
GE_USAGE_STATISTICS_URL: "https://qa.stats.greatexpectations.io/great_expectations/v1/usage_statistics"
stages:
- stage: scope_check
pool:
vmImage: 'ubuntu-20.04'
jobs:
- job: changes
steps:
- task: ChangedFiles@1
name: CheckChanges
inputs:
verbose: true
rules: |
[ContribChanged]
contrib/**
[ExperimentalChanged]
contrib/experimental/**
[DocsChanged]
docs/**
tests/integration/docusaurus/**
tests/integration/fixtures/**
tests/test_sets/**
[GEChanged]
great_expectations/**
tests/**
/*.txt
/*.yml
requirements*
azure-pipelines*
- stage: lint
dependsOn: scope_check
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: lint
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.7
displayName: 'Use Python 3.7'
- script: |
pip install isort[requirements]==5.10.1 flake8==5.0.4 black==22.3.0 pyupgrade==2.7.2 invoke==1.7.1
EXIT_STATUS=0
invoke fmt --check || EXIT_STATUS=$?
invoke lint || EXIT_STATUS=$?
pyupgrade --py3-plus || EXIT_STATUS=$?
exit $EXIT_STATUS
- stage: custom_checks
dependsOn: scope_check
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: type_hint_checker
steps:
- script: |
pip install mypy invoke # Prereq for type hint script
invoke type-coverage
name: TypeHintChecker
- job: static_type_check
steps:
- script: |
pip install mypy invoke
invoke type-check --install-types
name: StaticTypeCheck
- job: docstring_checker
steps:
- bash: python scripts/check_docstring_coverage.py
name: DocstringChecker
- job: unused_import_checker
steps:
- script: |
pip install flake8
# https://www.flake8rules.com/rules/F401.html
flake8 --select F401 great_expectations tests
name: UnusedImportChecker
- stage: import_ge
dependsOn: [lint]
pool:
vmImage: 'ubuntu-18.04'
jobs:
- job: import_ge
strategy:
matrix:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
pip install .
displayName: 'Install GE and required dependencies (i.e. not sqlalchemy)'
- script: |
python -c "import great_expectations as ge; print('Successfully imported GE Version:', ge.__version__)"
displayName: 'Import Great Expectations'
- stage: required
dependsOn: [scope_check, lint, import_ge, custom_checks]
pool:
vmImage: 'ubuntu-18.04'
jobs:
- job: compatibility_matrix
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
variables:
GE_pytest_opts: '--no-sqlalchemy'
strategy:
matrix:
Python37-Pandas023:
python.version: '3.7'
numpy.version: '1.17.0'
pandas.version: '0.23.4'
scipy.version: 'latest'
GE_pytest_pip_opts: '--requirement requirements-dev-test.txt --constraint constraints-dev.txt'
Python37-Pandas025:
python.version: '3.7'
numpy.version: '1.17.0'
pandas.version: '0.25.3'
scipy.version: 'latest'
# numpy 1.20 and pandas 0.25.3 do not coexist happily
GE_pytest_pip_opts: '--requirement requirements-dev-test.txt --constraint constraints-dev.txt'
Python38-PandasLatest:
python.version: '3.8'
numpy.version: 'latest'
pandas.version: 'latest'
scipy.version: 'latest'
GE_pytest_pip_opts: '--requirement requirements-dev-test.txt --constraint constraints-dev.txt'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
if [[ $(numpy.version) == 'latest' ]]; then
pip install numpy
else
pip install numpy==$(numpy.version)
fi
displayName: 'Install numpy'
- script: |
if [[ $(pandas.version) == 'latest' ]]; then
pip install pandas
else
pip install pandas==$(pandas.version)
fi
displayName: 'Install pandas'
- script: |
if [[ $(scipy.version) == 'latest' ]]; then
pip install scipy
else
pip install scipy==$(scipy.version)
fi
displayName: 'Install scipy'
- script: |
pip install --requirement requirements.txt
echo "about to run pip install $(GE_pytest_pip_opts)"
pip install $(GE_pytest_pip_opts)
pip install .
displayName: 'Install dependencies'
- script: |
# Install dependencies
pip install pytest-cov pytest-icdiff pytest-mock pytest-azurepipelines invoke
# Run unit-tests
invoke tests --ci --cloud --timeout=3.0
displayName: 'Unit Tests'
- script: |
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
$(GE_pytest_opts) --napoleon-docstrings --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html -m 'not unit and not e2e' --durations=10
displayName: 'pytest'
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Publish test results for Python $(python.version)'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
- job: comprehensive
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
timeoutInMinutes: 120
services:
postgres: postgres
variables:
GE_pytest_opts: '--postgresql --spark'
strategy:
matrix:
Python37:
python.version: '3.7'
pandas.version: 'latest'
GE_pytest_pip_opts: '--requirement requirements-dev.txt --constraint constraints-dev.txt'
Python38:
python.version: '3.8'
pandas.version: 'latest'
GE_pytest_pip_opts: '--requirement requirements-dev.txt --constraint constraints-dev.txt'
Python39:
python.version: '3.9'
pandas.version: 'latest'
GE_pytest_pip_opts: '--requirement requirements-dev.txt --constraint constraints-dev.txt'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
if [[ $(pandas.version) == 'latest' ]]; then
pip install pandas
else
pip install pandas==$(pandas.version)
fi
displayName: 'Install pandas'
- script: |
pip install --requirement requirements.txt
echo "about to run pip install $(GE_pytest_pip_opts)"
pip install $(GE_pytest_pip_opts)
pip install .
displayName: 'Install dependencies'
- script: |
pip install pytest-cov pytest-azurepipelines
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
$(GE_pytest_opts) --napoleon-docstrings --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html -m 'not e2e'
displayName: 'pytest'
- script: |
# These are tests that are specific to Great Expectations Cloud.
# In order to ensure coverage, we run them during each CI/CD cycle.
pytest tests --cloud -m "cloud and not e2e"
displayName: 'cloud-overrides'
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Publish test results for Python $(python.version)'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
- stage: usage_stats_integration
dependsOn: [scope_check, lint, import_ge, custom_checks]
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: test_usage_stats_messages
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
variables:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==20.2.4
displayName: 'Update pip'
- script: |
pip install --requirement requirements-dev-test.txt
pip install --requirement requirements.txt
pip install .
displayName: 'Install dependencies'
# Due to the relatively small number of usage_stats tests, we deem it appropriate to test them in their entirely through pytest
- script: |
pip install pytest-azurepipelines
pytest --no-sqlalchemy --aws-integration -v tests/integration/usage_statistics
displayName: 'pytest'
- stage: db_integration
pool:
vmImage: 'ubuntu-latest'
dependsOn: [scope_check, lint, import_ge, custom_checks]
jobs:
- job: mysql
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
timeoutInMinutes: 120
services:
mysql: mysql
variables:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
printf 'Waiting for MySQL database to accept connections'
until mysql --host=localhost --protocol=TCP --port=3306 --user=root --password='' --execute "SHOW DATABASES"; do
printf '.'
sleep 1;
done;
displayName: Wait for database to initialise
- script: |
echo "SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));" > mysql_setup_script.sql
mysql --host=localhost --protocol=TCP --port=3306 --user=root --password='' --reconnect < mysql_setup_script.sql
displayName: 'Configure mysql'
- script: |
pip install --requirement requirements-dev-test.txt --requirement requirements-dev-sqlalchemy.txt --constraint constraints-dev.txt
pip install --requirement requirements.txt
pip install .
displayName: 'Install dependencies'
- script: |
# Install dependencies
pip install pytest-cov pytest-azurepipelines
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
--mysql --napoleon-docstrings --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
displayName: 'pytest'
- job: mssql
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
timeoutInMinutes: 120
services:
mssql: mssql
variables:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
sqlcmd -U sa -P "ReallyStrongPwd1234%^&*" -Q "CREATE DATABASE test_ci;" -o create_db_output.txt
- script: |
pip install --requirement requirements-dev-test.txt --requirement requirements-dev-sqlalchemy.txt --constraint constraints-dev.txt
pip install --requirement requirements.txt
pip install .
displayName: 'Install dependencies'
- script: |
# Install dependencies
pip install pytest-cov pytest-azurepipelines
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
--mssql --napoleon-docstrings --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
displayName: 'pytest'
- job: trino
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
timeoutInMinutes: 120
services:
trino: trino
variables:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
printf 'Waiting for Trino database to accept connections'
sleep 30
# until trino --execute "SHOW CATALOGS"; do
# printf '.'
# sleep 1;
# done;
displayName: Wait for database to initialise
- script: |
pip install --requirement requirements-dev-test.txt --requirement requirements-dev-sqlalchemy.txt --constraint constraints-dev.txt
pip install --requirement requirements.txt
pip install .
displayName: 'Install dependencies'
- script: |
# Install dependencies
pip install pytest-cov pytest-azurepipelines
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
--trino --napoleon-docstrings --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
displayName: 'pytest'
- stage: cli_integration
dependsOn: [scope_check, lint, import_ge, custom_checks]
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: test_cli
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
services:
postgres: postgres
variables:
python.version: '3.8'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
pip install --requirement requirements-dev-test.txt --requirement requirements-dev-spark.txt --requirement requirements-dev-sqlalchemy.txt --constraint constraints-dev.txt
pip install --requirement requirements.txt
pip install .
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest --postgresql --spark --aws-integration tests/cli
displayName: 'pytest'