Try to cleanup the Gemfile... again.

The problem last time was that we removed Pry and Pry brings in CodeRay, we were
testing legacy stuff and didn't have CodeRay in our dependencies, which resulted
in those tests failing.

This also quietly announces the intention to move to RSpec by moving the old
test dependencies to ":test_legacy" and is slightly less agressive in it's
organization than before.
This commit is contained in:
Jordon Bedwell
2016-01-12 06:54:45 -06:00
parent 4595aab855
commit 712c16a7f1
3 changed files with 69 additions and 46 deletions

View File

@@ -16,14 +16,18 @@ status=0
if [ $# -eq 2 ]; then
docker exec -it docker-travis bash -ilc " \
rvm use --install --binary --fuzzy $1
bundle install --path vendor/bundle -j 256
bundle install --path vendor/bundle -j 12 \\
--without benchmark:site:development
bundle clean
script/test $2
" || status=$?
elif [ $# -eq 1 ]; then
docker exec -it docker-travis bash -ilc " \
rvm use --install --binary --fuzzy $1
bundle install --path vendor/bundle -j 256
bundle install --path vendor/bundle -j 12 \\
--without benchmark:site:development
bundle clean
bundle exec rake
" || status=$?