OOZOU
Get in Touch
Back to TIL
ruby

Suppress rspec warnings

October 13, 2020
$ RUBYOPT=W0 ./bin/rspec spec/
...

$ RUBYOPT=W0 bundle exec rspec spec/
...

$ RUBYOPT=W0 rspec
...

$ RUBYOPT=W0 ...
...

RSpec warnings can clutter your test output and make logs harder to read, especially in large Rails projects. Here’s how to suppress them effectively while maintaining a clean workflow.

Suppress Warnings Globally

You can disable warnings for your entire test suite by adding the following to spec_helper.rb or rails_helper.rb:

$VERBOSE = nil

Use Case: Ideal for quickly silencing all warnings, but it may hide important information across your app and dependencies.

Suppress Specific Warnings

Wrap warning-generating code in a suppression block:

def suppress_warnings 
original_verbose = $VERBOSE 
$VERBOSE = nil 
yield 
ensure 
$VERBOSE = original_verbose 
end 

suppress_warnings do 
require 'some_gem_with_warnings' 
end

Use Case: Useful for isolating warnings to specific dependencies or blocks of code.

Suppress RSpec Warnings

RSpec provides built-in configuration for managing its own warnings. Add this to your spec_helper.rb:

RSpec.configure do |config| 
config.warnings = false 
end

Use Case: Suppresses RSpec-specific warnings while keeping Ruby and dependency warnings visible.

Redirect Deprecation Warnings

For deprecation warnings, redirect them to a log file for review:

RSpec.configure do |config| 
config.deprecation_stream = File.open('log/rspec_deprecations.log', 'w') 
end

Use Case: Keeps test output clean while preserving visibility into deprecations.

Environment-Specific Suppression

Suppress warnings only in specific environments, such as CI:

$VERBOSE = nil if ENV['SUPPRESS_WARNINGS'] == 'true'

Use Case: Allows warnings during local development but hides them in CI for cleaner logs.

By tailoring these approaches to your needs, you can keep your test outputs clean and actionable, improving productivity in development and CI workflows.

More on ruby

rubyApril 30, 2021

Allow pasting multiline ruby blocks in Pry when using leading dot notation

We use leading dot notation a lot now e.g.

rubyOctober 14, 2020

Heredoc without interpolation

Sometimes you want to use Ruby's Heredoc without interpolation ('#{....}'). You can do this by adding single dashes around your keyword:

rubyOctober 13, 2020

Automagical Intermediate-level Hashtables in Ruby

All intermediate-level hashtables will be created automagically

Have a project in mind?

We'd love to hear what you're building.

Start a Conversationhello@oozou.com
OOZOU Logo

Bangkok · Singapore · Hong Kong

X
Facebook
Instagram
LinkedIn

Services

  • Web Development
  • AI Agents & Generative AI
  • Mobile App Development
  • Data Analytics & Engineering
  • UI/UX & Product Design
  • Digital Transformation

Company

  • About Us
  • Careers
  • Blog
  • Whitepapers
  • Case Studies
  • Today I Learned
  • Contact

More

  • Industries
  • Get an Estimate
  • Partner Network
© 2026 OOZOU. All rights reserved.
Privacy PolicyCode of ConductABAC Policy