Skip to content

Commit

Permalink
Automatically run bundle install before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Jun 7, 2024
1 parent 9ff477f commit 22f337c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,12 @@ namespace :release do

Bundler.with_original_env do
sh 'ruby -v'
sh 'bundle install'
sh 'bundle exec rake spec:installed'

env = { "PATH" => "#{ENV.fetch('CONCURRENT_JRUBY_HOME')}/bin:#{ENV['PATH']}" }
sh env, 'ruby -v'
sh env, 'bundle install'
sh env, 'bundle exec rake spec:installed'
end

Expand Down

0 comments on commit 22f337c

Please sign in to comment.