blackchestnut / blackchestnut.github.io

Developer notes about Ruby on Rails, React Native, PostgreSQL, etc.
https://kalinichev.net
4 stars 0 forks source link

Ignore some specs on CI #31

Open blackchestnut opened 6 years ago

blackchestnut commented 6 years ago
# spec/spec_helper
RSpec.configure do |config|
  # ...
  config.filter_run_excluding tag: :not_for_ci if ENV['CI']
end
# spec/controllers/foos_controller_spec.rb
describe FoosController, tag: :not_for_ci do
  render_views

  describe '#index' do
    # ...
  end
end

If the environment CI is specified, all specs with tag: :not_for_ci will be ignored.

CI=true rspec spec/controllers/foos_controller_spec.rb