diff --git a/config/environments/test.rb b/config/environments/test.rb index 5b1fa517..a4368aca 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -70,4 +70,10 @@ # Use test adapter for ActiveJob config.active_job.queue_adapter = :test + + # Disable logging in CI to improve run time by 10% + if ENV['CI'].present? + config.logger = Logger.new(nil) + config.log_level = :fatal + end end