From 3381624fc2e43d2907bc0e060bdbcac0b45426ef Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Wed, 23 Feb 2022 16:54:42 -0600 Subject: [PATCH] Change test:unit output format to documentation This makes rspec print out one line per test, which helps verify progress is being made when spying on CI jobs. GitHub Actions would not show dots when you hopped in to view a running job, presumably because its doing line-based streaming. --- tasks/test.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/test.rake b/tasks/test.rake index a6da5e8c9..c47aac691 100644 --- a/tasks/test.rake +++ b/tasks/test.rake @@ -4,6 +4,6 @@ require 'rspec/core/rake_task' namespace :test do RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = "test/unit/**/*_test.rb" - t.rspec_opts = "--color" + t.rspec_opts = "--color --format documentation" end end