From 1047ee6d48705e9707504ebbfbb9e0f25b3089ed Mon Sep 17 00:00:00 2001 From: Pritesh Nandgaonkar Date: Mon, 15 Jul 2019 08:22:25 -0700 Subject: [PATCH] Fix broken travis test (#490) Summary: The travis test used to terminate after 10 minutes of `pod install --silent` being unresponsive, added `travis_wait` to circumvent it. ## Changelog Fixed the broken travis test Pull Request resolved: https://github.com/facebook/flipper/pull/490 Test Plan: All tests are green on this PR. Reviewed By: jknoxville Differential Revision: D16261250 Pulled By: priteshrnandgaonkar fbshipit-source-id: 323c5decb66232830d692b784f7cf5f9cbf67a01 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5556417c6..a33acf53c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,7 @@ matrix: install: - cd iOS/Sample - rm -f Podfile.lock - - pod install --silent + - travis_wait pod install --silent - cd ../../ script: @@ -70,7 +70,7 @@ matrix: install: - cd iOS/SampleSwift - rm -f Podfile.lock - - pod install --silent + - travis_wait pod install --silent - cd ../../ script: - cd iOS/SampleSwift