mirror of
https://github.com/jekyll/jekyll.git
synced 2026-04-06 03:01:43 -04:00
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:
@@ -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=$?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user