Skip to content
Draft

WIP #227

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,19 @@ namespace :test do
remove_files("Gemfile.lock")
end
desc "Resolve and install dependencies for unit and integration test"
task :install => ci_install
task :install do
Array(ci_install).each do |task|
Rake::Task[task].invoke
end
end
end

desc "Run the unit and integration test for all appraisals"
task :ci => ci_task
task :ci do
Array(ci_task).each do |task|
Rake::Task[task].invoke
end
end
end

desc 'Default: run the unit and integration tests.'
Expand Down
1 change: 1 addition & 0 deletions test/test_apps/shared/engines/forum/test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require 'logger'
require File.expand_path("../dummy/config/environment.rb", __FILE__)
require "rails/test_help"

Expand Down