rspec_retry.rb 418 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. require 'rspec/retry'
  3. RSpec.configure do |config|
  4. # show retry status in spec process
  5. config.verbose_retry = true
  6. # show exception that triggers a retry if verbose_retry is set to true
  7. config.display_try_failure_messages = true
  8. # The list of exceptions to fail on should be configured in the individual :run_with_retry calls.
  9. end