diff options
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 60db3e1bc46..9392dda4f4c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -7,7 +7,6 @@ ENV["IN_MEMORY_APPLICATION_SETTINGS"] = 'true' require File.expand_path('../config/environment', __dir__) require 'rspec/rails' require 'shoulda/matchers' -require 'rspec/retry' require 'rspec-parameterized' rspec_profiling_is_configured = @@ -49,9 +48,6 @@ RSpec.configure do |config| config.use_instantiated_fixtures = false config.fixture_path = Rails.root - config.verbose_retry = true - config.display_try_failure_messages = true - config.infer_spec_type_from_file_location! config.define_derived_metadata(file_path: %r{/spec/}) do |metadata| @@ -100,8 +96,6 @@ RSpec.configure do |config| config.include PolicyHelpers, type: :policy if ENV['CI'] - # This includes the first try, i.e. tests will be run 4 times before failing. - config.default_retry_count = 4 config.reporter.register_listener( RspecFlaky::Listener.new, :example_passed, |