Skip to content

Commit 241f515

Browse files
committed
WIP
1 parent 13cd210 commit 241f515

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Rakefile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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
223231
end
224232

225233
desc 'Default: run the unit and integration tests.'

0 commit comments

Comments
 (0)