Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.test_files = FileList['test/**/*_test.rb']
t.verbose = true
t.options = "--verbose"
Copy link
Copy Markdown
Member Author

@ofedoren ofedoren May 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As an alternative we could pin rake here. I admit, the fix is from Claude:

The fix is one of:

 - Pin rake to ~> 13.3.0 in bundler.d/test.rb to avoid the new behavior
 - Remove t.verbose = true from the Rakefile (or set it to false) and use TESTOPTS="--verbose" when needed
 - Add -v handling to test-unit (upstream fix)
 - Set t.verbose = true but add t.options = "--verbose" which test-unit's autorunner does understand, preventing the OptionParser -v → --version mapping

t.ruby_opts = ["-W1"]
end

Expand Down
Loading