summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-11-13 17:43:14 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2014-11-13 17:43:14 -0800
commit30f1e0b9a6bffd8a27c27fd9ad976b46b92d25d5 (patch)
treea6319a49b4c15f51a7a274e49b36cdc5a43fce7f
parent038ed52977e68e1a9ead39a5a72c73af8477d1b8 (diff)
downloadchef-30f1e0b9a6bffd8a27c27fd9ad976b46b92d25d5.tar.gz
override .rspec to use progress formatter
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index f526c0a904..9649f84534 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,11 +20,12 @@ branches:
# do not run expensive spec tests on PRs, only on branches
script: "
+echo '-fp' >> .rspec
if [ ${TRAVIS_PULL_REQUEST} = 'false' ];
then
- bundle exec rake spec:all --color --format progress;
+ bundle exec rake spec:all;
else
- bundle exec rake spec --color --format progress;
+ bundle exec rake spec;
fi"
env: