Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

t.verbose=true in Rake::Task.new doesn't work #392

Open
daddygongon opened this issue Jul 28, 2021 · 1 comment
Open

t.verbose=true in Rake::Task.new doesn't work #392

daddygongon opened this issue Jul 28, 2021 · 1 comment

Comments

@daddygongon
Copy link

daddygongon commented Jul 28, 2021

When 'rake test' with verbose output,

rake test TESTOPTS="-v"

works well, but

Rake::TestTask.new do |t|
     t.verbose = true
end

does not work.

Changing it to

     t.options = '-v'

it works.

If it is the specs, please change the example from t.verbose = true to t.options = '-v'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants
@daddygongon and others