Skip to content

Commit

Permalink
Fix verbose option for TestTask
Browse files Browse the repository at this point in the history
`rake test —verbose` did not result in verbose mode for MiniTest.

The verbose option needs to be forwarded to the Ruby call.
  • Loading branch information
Mike Blumtritt committed Sep 9, 2015
1 parent c854489 commit 6495738
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/rake/testtask.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def ruby_opts_string # :nodoc:
opts = @ruby_opts.dup
opts.unshift("-I\"#{lib_path}\"") unless @libs.empty?
opts.unshift("-w") if @warning
opts.unshift('--verbose') if @verbose
opts.join(" ")
end

Expand Down

0 comments on commit 6495738

Please sign in to comment.