From 81cd434d9af55b32e1f4635c0e1afbf3d222ddc9 Mon Sep 17 00:00:00 2001 From: Ivan Kuchin Date: Wed, 8 Jan 2025 13:03:18 +0100 Subject: [PATCH] use rspec format documentation for CI --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 6c92e00..4587989 100644 --- a/Rakefile +++ b/Rakefile @@ -6,6 +6,7 @@ require "rspec/core/rake_task" RSpec::Core::RakeTask.new("test") do |t| t.ruby_opts = "-w" + t.rspec_opts = "--format=documentation" if ENV["CI"] end task default: :test