diff --git a/.travis.yml b/.travis.yml index 2387501..58842af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ branches: before_install: - echo -e "machine github.com\n login $GITHUB_ACCESS_TOKEN" >> ~/.netrc script: - - ./fastlane/travis.sh + - travis_wait 30 ./fastlane/travis.sh diff --git a/fastlane/travis.sh b/fastlane/travis.sh index f6e503e..8040c70 100755 --- a/fastlane/travis.sh +++ b/fastlane/travis.sh @@ -3,7 +3,7 @@ gem update fastlane gem install xcodeproj if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then - fastlane test; + fastlane test; else fastlane travis; fi