forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-dev.yml
520 lines (434 loc) · 16.6 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
# 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:400
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-latest'
jobs:
- job: changes
steps:
- task: ChangedFiles@1
name: CheckChanges
inputs:
verbose: true
rules: |
[DocsChanged]
docs/**
tests/integration/docusaurus/**
tests/integration/fixtures/**
tests/test_sets/**
examples/expectations/*.py
static/_redirects
static/index.html
/*.js
/*.json
yarn.lock
[GXChanged]
great_expectations/**/*.py
pyproject.toml
setup.cfg
setup.py
MANIFEST.in
tests/**
/*.txt
/*.yml
requirements*
reqs/*.txt
azure/**/*.yml
assets/scripts/**
scripts/*.py
scripts/*.sh
- stage: lint
dependsOn: scope_check
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: lint
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GXChanged'], true)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.7
displayName: 'Use Python 3.7'
- script: |
pip install $(grep -E '^(black|invoke|isort|ruff)' reqs/requirements-dev-contrib.txt)
EXIT_STATUS=0
invoke fmt --check || EXIT_STATUS=$?
invoke lint || EXIT_STATUS=$?
exit $EXIT_STATUS
- stage: custom_checks
dependsOn: scope_check
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: static_type_check
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.7
displayName: 'Use Python 3.7'
- script: |
pip install --requirement requirements-types.txt
invoke type-check --ci --pretty
name: StaticTypeCheck
- job: docstring_linter
steps:
- script: |
pip install --requirement reqs/requirements-dev-test.txt
invoke docstrings
name: DocstringLinter
- job: unused_import_checker
steps:
- script: |
pip install $(grep -E '^(ruff)' reqs/requirements-dev-contrib.txt)
# https://www.flake8rules.com/rules/F401.html
ruff --select F401 great_expectations tests
name: UnusedImportChecker
- job: docs_snippet_checker
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.DocsChanged'], true)
steps:
- script: |
yarn install
python scripts/validate_docs_snippets.py
name: DocsSnippetChecker
- stage: import_ge
dependsOn: scope_check
pool:
vmImage: 'ubuntu-20.04'
jobs:
- job: import_ge
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
displayName: 'Use Python 3.7'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
pip install .
displayName: 'Install GX and required dependencies (i.e. not sqlalchemy)'
- script: |
python -c "import great_expectations as gx; print('Successfully imported GX Version:', gx.__version__)"
displayName: 'Import Great Expectations'
- stage: required
dependsOn: [scope_check, lint, import_ge, custom_checks]
pool:
vmImage: 'ubuntu-20.04'
jobs:
# Runs pytest without any additional flags
- job: minimal
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GXChanged'], true)
strategy:
# This matrix is intended to split up our sizeable test suite into two distinct components.
# By splitting up slow tests from the remainder of the suite, we can parallelize test runs
# at the cost of an additional Azure worker.
#
# To work as intended, "standard" and "slow" should be equally performant.
matrix:
standard:
pytest_args: 'tests --ignore "tests/rule_based_profiler" --ignore "tests/integration"'
run_unit_tests: true
slow:
pytest_args: 'tests/rule_based_profiler tests/integration'
run_unit_tests: false
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
displayName: 'Use Python 3.7'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
pip install --constraint constraints-dev.txt ".[test]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run unit-tests
if $(run_unit_tests); then
invoke tests --ci --cloud --timeout=3.0
fi
displayName: 'Unit Tests'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- script: |
# Run pytest
pytest $(pytest_args) \
--no-sqlalchemy \
--ignore 'tests/cli' \
--ignore 'tests/integration/usage_statistics' \
--napoleon-docstrings \
--junitxml=junit/test-results.xml \
--cov=. \
--cov-report=xml \
--cov-report=html \
-m 'not unit and not e2e' \
--durations=10
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- 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'
# Runs pytest with Spark and Postgres enabled
- job: comprehensive
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GXChanged'], true)
strategy:
# This matrix is intended to split up our sizeable test suite into two distinct components.
# By splitting up slow tests from the remainder of the suite, we can parallelize test runs
# at the cost of an additional Azure worker.
#
# To work as intended, "standard" and "slow" should be equally performant.
matrix:
standard:
pytest_args: 'tests --ignore "tests/rule_based_profiler" --ignore "tests/integration"'
slow:
pytest_args: 'tests/rule_based_profiler tests/integration'
services:
postgres: postgres
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
displayName: 'Use Python 3.7'
- bash: python -m pip install --upgrade pip==21.3.1
displayName: 'Update pip'
- script: |
pip install --constraint constraints-dev.txt ".[dev]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest $(pytest_args) \
--postgresql \
--spark \
--ignore 'tests/cli' \
--ignore 'tests/integration/usage_statistics' \
--napoleon-docstrings \
--junitxml=junit/test-results.xml \
--cov=. \
--cov-report=xml \
--cov-report=html \
-m 'not unit and not e2e'
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- 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.GXChanged'], 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 --constraint constraints-dev.txt ".[test]" pytest-azurepipelines
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: |
pytest --no-sqlalchemy --aws-integration -v tests/integration/usage_statistics
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- 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.GXChanged'], true)
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 --constraint constraints-dev.txt ".[test, mysql]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest tests/test_definitions tests/expectations \
--mysql \
--napoleon-docstrings \
--junitxml=junit/test-results.xml \
--cov=. \
--cov-report=xml \
--cov-report=html
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- job: mssql
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GXChanged'], true)
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 --constraint constraints-dev.txt ".[test, mssql]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest tests/test_definitions tests/expectations \
--mssql \
--napoleon-docstrings \
--junitxml=junit/test-results.xml \
--cov=. \
--cov-report=xml \
--cov-report=html
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- job: trino
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GXChanged'], true)
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 --constraint constraints-dev.txt ".[test, trino]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest tests/test_definitions tests/expectations \
--trino \
--napoleon-docstrings \
--junitxml=junit/test-results.xml \
--cov=. \
--cov-report=xml \
--cov-report=html
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}
- 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.GXChanged'], 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 --constraint constraints-dev.txt ".[test, postgresql, spark]" pytest-azurepipelines
displayName: 'Install dependencies'
- script: |
# Run pytest
pytest --postgresql --spark --aws-integration tests/cli
displayName: 'pytest'
env:
GE_USAGE_STATISTICS_URL: ${{ variables.GE_USAGE_STATISTICS_URL }}