forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
621 lines (520 loc) · 21.8 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
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
trigger:
batch: true
branches:
include:
- master
tags:
include:
- "v*"
pr:
autoCancel: true
branches:
include:
- master
drafts: true
paths:
exclude:
- AUTHORS
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- README.md
- binder/
- docs/
- examples/
- python/perspective/README.md
schedules:
- cron: "0 0 * * 6"
displayName: Daily midnight build
branches:
include:
- master
always: "true"
variables:
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
parameters:
- name: initSteps
type: stepList
default:
- task: NodeTool@0
inputs:
versionSpec: "16.x"
- bash: npm install -g yarn
displayName: "Install Yarn"
- task: Cache@2
inputs:
key: 'yarn | "$(Agent.OS)" | yarn.lock'
restoreKeys: |
yarn | "$(Agent.OS)"
yarn
path: $(YARN_CACHE_FOLDER)
displayName: Cache Yarn packages
condition: not(eq(variables['Agent.OS'], 'Windows_NT'))
- bash: yarn --frozen-lockfile
displayName: "Install Javascript Dependencies"
- name: pythonInitSteps
type: stepList
default:
- task: UsePythonVersion@0
inputs:
versionSpec: "$(python.version)"
architecture: "x64"
displayName: "Use Python $(python.version)"
- bash: python -m pip install --upgrade pip wheel setuptools "jupyterlab>=3.0.14" numpy "pyarrow>=5" "black==20.8b1" flake8-black
displayName: "Install Python base dependencies"
condition: succeeded()
- name: wasmInitSteps
type: stepList
default:
- bash: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
displayName: "Install wasm-pack"
- bash: rustup toolchain install nightly
displayName: "Install Rust nightly"
- bash: rustup component add rust-src --toolchain nightly
displayName: "Install rust-src"
- name: linuxInitSteps
type: stepList
default:
- bash: sudo node scripts/install_tools.js
displayName: "Install Linux System dependencies"
- name: macInitSteps
type: stepList
default:
- bash: brew install boost
displayName: "Install Mac System dependencies"
- name: windowsInitSteps
type: stepList
default:
- script: |
which python > python.txt
set /p PYTHON=<python.txt
ln -s %PYTHON% %PYTHON%$(python.version)
python --version
which python$(python.version)
displayName: "Which python"
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/command-line?view=azure-devops&tabs=yaml
# When you want to run a batch file from another batch file in Windows CMD, you must use the call command, otherwise the first batch file is terminated.
- script: |
set VCPKG_DEFAULT_TRIPLET=x64-windows
set VCPKG_PLATFORM_TOOLSET=v142
git clone https://github.com/Microsoft/vcpkg
cd vcpkg
call bootstrap-vcpkg.bat
call vcpkg.exe install boost-algorithm boost-filesystem boost-multi-index boost-multiprecision boost-program-options boost-system boost-unordered boost-uuid
call vcpkg.exe integrate install
displayName: "Install Windows System dependencies"
- name: webassemblySteps
type: stepList
default:
- bash: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
displayName: "Install wasm-pack"
- bash: rustup toolchain install nightly
displayName: "Install Rust nightly"
- bash: rustup component add rust-src --toolchain nightly
displayName: "Install rust-src"
- bash: yarn lint_js
displayName: "Lint Javascript"
- bash: yarn build_js --ci
displayName: "Build Javascript"
- bash: yarn test_js --quiet --ci
displayName: "Test Javascript"
env:
PSP_DOCKER: 1
- name: pythonBuildSteps
type: stepList
default:
- script: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: "Build Python"
- name: pythonBuildVS2019Steps
type: stepList
default:
- script: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: "Build Python"
env:
# azure pipelines are bad, so force windows-2019 to use VS2019
PSP_GENERATOR: Visual Studio 16 2019
- name: pythonBuildDockerSteps
type: stepList
default:
- bash: yarn lint_python
displayName: "Lint Python"
- bash: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: "Build Python"
env:
PSP_DOCKER: 1
- name: pythonCoverageSteps
type: stepList
default:
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: "python/perspective/python_junit.xml"
testRunTitle: "Publish test results for Python $(python.version) $(manylinux_flag)"
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: "$(System.DefaultWorkingDirectory)/**/*coverage.xml"
- name: pythonSDistSteps
type: stepList
default:
# Build a python sdist
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId).tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
displayName: "Build Python SDist"
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/python/perspective/dist/"
artifactName: "perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)"
- name: pythonMacWheelSteps
type: stepList
default:
# Build a python wheel for Mac 10.14
- bash: yarn _wheel_python $(python_flag) --macos
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')))
displayName: "Build Mac wheel"
# Test the wheel
- bash: cd $(System.DefaultWorkingDirectory)/python/perspective/scripts && ./test_wheels.sh $(python_flag) --macos
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')))
displayName: "Test Mac Wheel"
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')))
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/python/perspective/dist/"
artifactName: "$(artifact_name)"
- name: pythonLinuxWheelSteps
type: stepList
default:
# Build a python wheel for Manylinux
- bash: yarn _wheel_python --ci $(python_flag) $(manylinux_flag)
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
displayName: "Build Manylinux Wheel"
env:
PSP_DOCKER: 1
# Test the wheel
- bash: cd $(System.DefaultWorkingDirectory)/python/perspective/scripts && ./test_wheels.sh $(python_flag) $(manylinux_flag)
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
displayName: "Test Manylinux Wheel"
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/python/perspective/wheelhouse/"
artifactName: "$(artifact_name)"
- name: pythonWindowsWheelVS2019Steps
type: stepList
default:
# Build a python wheel for Windows
- bash: yarn _wheel_python $(python_flag)
displayName: "Build Windows Wheel"
env:
# azure pipelines are bad, so force windows-2019 to use VS2019
PSP_GENERATOR: Visual Studio 16 2019
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')))
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/python/perspective/dist/"
artifactName: "$(artifact_name)"
jobs:
- job: "WebAssembly"
pool:
vmImage: "ubuntu-latest"
strategy:
matrix:
Base:
# Do we care to test elsewhere?
python.version: "3.9"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.wasmInitSteps }}
- ${{ parameters.linuxInitSteps }}
- ${{ parameters.webassemblySteps }}
- task: PublishTestResults@2
condition: succeeded()
inputs:
testRunner: JUnit
testResultsFiles: "junit.xml"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/rust/perspective-viewer/test/screenshots/"
artifactName: "perspective-viewer-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid/test/screenshots/"
artifactName: "perspective-viewer-datagrid-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc/test/screenshots/"
artifactName: "perspective-viewer-d3fc-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-workspace/test/screenshots/"
artifactName: "perspective-workspace-$(Build.BuildNumber)"
# `yarn pack` the public packages so the Jupyterlab tests can use the
# already-built `dist` folder for perspective, perspective-viewer,
# perspective-viewer-datagrid and perspective-viewer-d3fc.
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective && yarn pack --filename=perspective-dist.tgz
displayName: "yarn pack perspective"
- bash: cd $(System.DefaultWorkingDirectory)/rust/perspective-viewer && yarn pack --filename=perspective-viewer-dist.tgz
displayName: "yarn pack perspective-viewer"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid && yarn pack --filename=perspective-viewer-datagrid-dist.tgz
displayName: "yarn pack perspective-viewer-datagrid"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc && yarn pack --filename=perspective-viewer-d3fc-dist.tgz
displayName: "yarn pack perspective-viewer-d3fc"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab && yarn pack --filename=perspective-jupyterlab-dist.tgz
displayName: "yarn pack perspective-jupyterlab"
# Upload the packed versions
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective/perspective-dist.tgz"
artifactName: "perspective-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/rust/perspective-viewer/perspective-viewer-dist.tgz"
artifactName: "perspective-viewer-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid/perspective-viewer-datagrid-dist.tgz"
artifactName: "perspective-viewer-datagrid-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc/perspective-viewer-d3fc-dist.tgz"
artifactName: "perspective-viewer-d3fc-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab/perspective-jupyterlab-dist.tgz"
artifactName: "perspective-jupyterlab-dist"
- job: "Linux"
pool:
vmImage: "ubuntu-latest"
strategy:
matrix:
Python37ManyLinux2010:
python.version: "3.7"
python_flag: ""
manylinux_flag: "--manylinux2010"
artifact_name: "cp37-cp37m-manylinux2010_x86_64"
? ${{ if or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')) }}
: Python36ManyLinux2010:
python.version: "3.6"
python_flag: "--python36"
manylinux_flag: "--manylinux2010"
artifact_name: "cp36-cp36m-manylinux2010_x86_64"
Python36ManyLinux2014:
python.version: "3.6"
python_flag: "--python36"
manylinux_flag: "--manylinux2014"
artifact_name: "cp36-cp36m-manylinux2014_x86_64"
# Python37ManyLinux2010 is always built
Python37ManyLinux2014:
python.version: "3.7"
python_flag: ""
manylinux_flag: "--manylinux2014"
artifact_name: "cp37-cp37m-manylinux2014_x86_64"
Python38ManyLinux2010:
python.version: "3.8"
python_flag: "--python38"
manylinux_flag: "--manylinux2010"
artifact_name: "cp38-cp38-manylinux2010_x86_64"
Python38ManyLinux2014:
python.version: "3.8"
python_flag: "--python38"
manylinux_flag: "--manylinux2014"
artifact_name: "cp38-cp38-manylinux2014_x86_64"
Python39ManyLinux2010:
python.version: "3.9"
python_flag: "--python39"
manylinux_flag: "--manylinux2010"
artifact_name: "cp39-cp39-manylinux2010_x86_64"
Python39ManyLinux2014:
python.version: "3.9"
python_flag: "--python39"
manylinux_flag: "--manylinux2014"
artifact_name: "cp39-cp39-manylinux2014_x86_64"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.pythonBuildDockerSteps }}
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonLinuxWheelSteps }}
# - job: 'Linux_Python_SDist'
# pool:
# vmImage: 'ubuntu-18.04'
# strategy:
# matrix:
# Python37:
# python.version: '3.7'
# python_flag: ''
# steps:
# - ${{ parameters.initSteps }}
# - ${{ parameters.linuxInitSteps }}
# - ${{ parameters.pythonBuildSteps }}
# - ${{ parameters.pythonSDistSteps }}
- job: "Windows"
pool:
vmImage: "windows-2019"
strategy:
matrix:
Python37:
python.version: "3.7"
python_flag: ""
artifact_name: "cp37-cp37m-win64_amd"
? ${{ if or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')) }}
: Python38:
python.version: "3.8"
python_flag: "--python38"
artifact_name: "cp38-cp38m-win64_amd"
Python39:
python.version: "3.9"
python_flag: "--python39"
artifact_name: "cp39-cp39m-win64_amd"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.windowsInitSteps }}
- ${{ parameters.pythonBuildVS2019Steps }}
# Separate out windows wheel builds as the windows
# build takes 37 years to finish
- job: "Windows_Wheels"
pool:
vmImage: "windows-2019"
condition: or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual'))
strategy:
matrix:
Python37:
python.version: "3.7"
python_flag: ""
artifact_name: "cp37-cp37m-win64_amd"
Python38:
python.version: "3.8"
python_flag: "--python38"
artifact_name: "cp38-cp38m-win64_amd"
Python39:
python.version: "3.9"
python_flag: "--python39"
artifact_name: "cp39-cp39m-win64_amd"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.windowsInitSteps }}
- ${{ parameters.pythonWindowsWheelVS2019Steps }}
- job: "MacOS_Catalina"
pool:
vmImage: "macos-10.15"
condition: or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual'))
strategy:
matrix:
Python36:
python.version: "3.6"
python_flag: "--python36"
artifact_name: "cp36-cp36m-macosx_10_15_x86_64"
Python37:
python.version: "3.7"
python_flag: ""
artifact_name: "cp37-cp37m-macosx_10_15_x86_64"
Python38:
python.version: "3.8"
python_flag: "--python38"
artifact_name: "cp38-cp38-macosx_10_15_x86_64"
Python39:
python.version: "3.9"
python_flag: "--python39"
artifact_name: "cp39-cp39-macosx_10_15_x86_64"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.macInitSteps }}
- ${{ parameters.pythonBuildSteps }}
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonMacWheelSteps }}
- job: "MacOS_BigSur"
pool:
vmImage: "macos-11"
strategy:
matrix:
Python39:
python.version: "3.9"
python_flag: "--python39"
artifact_name: "cp39-cp39-macosx_11_0_x86_64"
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.macInitSteps }}
- ${{ parameters.pythonBuildSteps }}
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonMacWheelSteps }}
- job: "Jupyterlab"
dependsOn: ["WebAssembly", "Linux"]
pool:
vmImage: "ubuntu-latest"
variables:
python.version: "3.7"
python_flag: ""
manylinux_flag: "--manylinux2010"
artifact_name: "cp37-cp37m-manylinux2010_x86_64"
steps:
# don't use InitSteps because we don't want to cache local puppeteer
- task: NodeTool@0
inputs:
versionSpec: "16.x"
- bash: npm install -g yarn
displayName: "Install Yarn"
- bash: yarn --frozen-lockfile
displayName: "Install Javascript Dependencies"
- ${{ parameters.pythonInitSteps }}
- ${{ parameters.wasmInitSteps }}
- task: DownloadPipelineArtifact@2
displayName: "Download Python 3.7 Perspective Wheel"
inputs:
artifact: $(artifact_name)
path: $(System.DefaultWorkingDirectory)/wheel
- bash: python -m pip install $(System.DefaultWorkingDirectory)/wheel/*.whl
displayName: "Install perspective-python from wheel"
- bash: yarn add -W --dev [email protected]
displayName: "Install Puppeteer"
- task: DownloadPipelineArtifact@2
displayName: "Download perspective dist"
inputs:
artifact: "perspective-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer dist"
inputs:
artifact: "perspective-viewer-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer-datagrid dist"
inputs:
artifact: "perspective-viewer-datagrid-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer-d3fc dist"
inputs:
artifact: "perspective-viewer-d3fc-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-jupyterlab dist"
inputs:
artifact: "perspective-jupyterlab-dist"
path: $(System.DefaultWorkingDirectory)
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective package
displayName: "Install perspective dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-dist.tgz -C $(System.DefaultWorkingDirectory)/rust/perspective-viewer package
displayName: "Install perspective-viewer dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-datagrid-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid package
displayName: "Install perspective-viewer-datagrid dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-d3fc-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc package
displayName: "Install perspective-viewer-d3fc dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-jupyterlab-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab package
displayName: "Install perspective-jupyterlab dist"
- bash: jupyter labextension install $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab
displayName: "Install perspective-jupyterlab labextension"
- bash: yarn test_js --jupyter --debug
displayName: "Run Jupyterlab tests"
env:
PACKAGE: perspective-jupyterlab