Skip to content

Commit

Permalink
Stop pulling image in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Harrison committed Jul 26, 2021
1 parent 20f823d commit cda2caf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions __tests__/updater-integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ describe('Updater', () => {
const updater = new Updater(UPDATER_IMAGE_NAME, mockAPIClient)

beforeAll(async () => {
if (process.env.CI) {
// Skip this test on CI, as it takes too long to download the image
return
}
await ImageService.pullImage(UPDATER_IMAGE_NAME)
})

Expand Down

0 comments on commit cda2caf

Please sign in to comment.