We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13cd210 commit 241f515Copy full SHA for 241f515
1 file changed
Rakefile
@@ -215,11 +215,19 @@ namespace :test do
215
remove_files("Gemfile.lock")
216
end
217
desc "Resolve and install dependencies for unit and integration test"
218
- task :install => ci_install
+ task :install do
219
+ Array(ci_install).each do |task|
220
+ Rake::Task[task].invoke
221
+ end
222
223
224
225
desc "Run the unit and integration test for all appraisals"
- task :ci => ci_task
226
+ task :ci do
227
+ Array(ci_task).each do |task|
228
229
230
231
232
233
desc 'Default: run the unit and integration tests.'
0 commit comments