File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
test/test_apps/shared/engines/forum/test Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -215,11 +215,19 @@ namespace :test do
215215 remove_files ( "Gemfile.lock" )
216216 end
217217 desc "Resolve and install dependencies for unit and integration test"
218- task :install => ci_install
218+ task :install do
219+ Array ( ci_install ) . each do |task |
220+ Rake ::Task [ task ] . invoke
221+ end
222+ end
219223 end
220224
221225 desc "Run the unit and integration test for all appraisals"
222- task :ci => ci_task
226+ task :ci do
227+ Array ( ci_task ) . each do |task |
228+ Rake ::Task [ task ] . invoke
229+ end
230+ end
223231end
224232
225233desc 'Default: run the unit and integration tests.'
Original file line number Diff line number Diff line change 11# Configure Rails Environment
22ENV [ "RAILS_ENV" ] = "test"
33
4+ require 'logger'
45require File . expand_path ( "../dummy/config/environment.rb" , __FILE__ )
56require "rails/test_help"
67
You can’t perform that action at this time.
0 commit comments