We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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'
t.verbose = true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When 'rake test' with verbose output,
works well, but
does not work.
Changing it to
it works.
If it is the specs, please change the example from
t.verbose = true
tot.options = '-v'
The text was updated successfully, but these errors were encountered: