File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ ruby 2.7.5
Original file line number Diff line number Diff line change @@ -54,14 +54,16 @@ run_all() {
5454
5555 for gemfile in $gemfiles ; do
5656 echo
57- pretty_echo " Testing with $gemfile "
58- pretty_run bundle install --gemfile $gemfile --path $bundle_path --binstubs $bin_path
57+ BUNDLE_GEMFILE=$gemfile
58+ pretty_echo " Testing with $BUNDLE_GEMFILE "
59+ pretty_run bundle install --path $bundle_path --binstubs $bin_path
5960 pretty_run bundle exec rake spec
6061 done
6162
6263 echo
64+ unset BUNDLE_GEMFILE
6365 pretty_echo " Testing with default Gemfile"
64- pretty_run bundle install --gemfile Gemfile -- path $bundle_path --binstubs $bin_path
66+ pretty_run bundle install --path $bundle_path --binstubs $bin_path
6567 pretty_run bundle exec rake spec
6668}
6769
You can’t perform that action at this time.
0 commit comments