From fea6a0ef049b0cf40f0bd557859c8393c04d7e3e Mon Sep 17 00:00:00 2001 From: Adam Ruzicka Date: Mon, 18 May 2026 06:44:30 -0400 Subject: [PATCH] Change rake task 'verbose' parameter To work around the incompatibility between rake >=13.4.2 and ci_reporter_test_unit. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e174984..07bcf8a 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,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' end require 'rubocop/rake_task'