From 8e90488117d9c9b5ce912918e69b09d1d92ca868 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Fri, 13 Jul 2018 16:21:28 +1000 Subject: [PATCH] Use progress formatter on Travis to avoid timeout We had a few Travis builds lately that timed out, because no output was received. Even though our standard formatter Fuubar should detect Travis and print the right output, nothing was visible in our builds. https://github.com/travis-ci/travis-ci/issues/1337 In this patch, I tell Travis to use Rspec's default formatter to print dots for every passed test. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7039fe0c1a..952e999999 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,7 @@ before_script: script: - 'if [ "$KARMA" = "true" ]; then bundle exec rake karma:run; else echo "Skipping karma run"; fi' - - "bundle exec rake 'knapsack:rspec[--tag ~performance]'" + - "bundle exec rake 'knapsack:rspec[--format progress --tag ~performance]'" after_success: - >