Skip to content

Commit

Permalink
Skip puppeteer download on unit test runs
Browse files Browse the repository at this point in the history
Fixes #2539
  • Loading branch information
Tyriar committed Nov 5, 2019
1 parent 7f598a3 commit 3d748aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
inputs:
versionSpec: '1.x'
displayName: 'Install Yarn'
- script: yarn
- script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn
displayName: 'Install dependencies and build'
- script: yarn test-unit --forbid-only
displayName: 'Unit tests'
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- script: yarn
- script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn
displayName: 'Install dependencies and build'
- script: yarn test-unit --forbid-only
displayName: 'Unit tests'
Expand All @@ -62,7 +62,7 @@ jobs:
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- script: yarn
- script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn
displayName: 'Install dependencies and build'
- script: yarn test-unit --forbid-only
displayName: 'Unit tests'
Expand Down

0 comments on commit 3d748aa

Please sign in to comment.