From c212126f6ab49373695f4643e6766588aba201ea Mon Sep 17 00:00:00 2001 From: Jack Franklin Date: Thu, 30 Apr 2020 12:38:58 +0100 Subject: [PATCH] chore: turn on Travis retries (#5787) To enable Travis to retry to work around ECONNRESET and similar that pops up. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 95a685a56ff19..b91387ce17f84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ jobs: script: - ls .local-chromium .local-firefox - npm run tsc - - npm run unit + - travis_retry npm run unit - os: "windows" name: 'Unit tests: Windows/Chromium' @@ -35,7 +35,7 @@ jobs: before_install: - PUPPETEER_PRODUCT=firefox npm install script: - - npm run coverage + - travis_retry npm run coverage # This bot runs all the extra checks that aren't the main Puppeteer unit tests - node_js: "10.19.0" @@ -57,7 +57,7 @@ jobs: before_install: - PUPPETEER_PRODUCT=firefox npm install script: - - npm run funit + - travis_retry npm run funit notifications: email: false