Commit 919e22e0 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Double retries for rspec-retries

It was 2*4 => 8 times before, so 4 times is still half retries
parent e861af40
......@@ -100,8 +100,8 @@ RSpec.configure do |config|
config.include PolicyHelpers, type: :policy
if ENV['CI']
# This includes the first try, i.e. tests will be run 2 times before failing.
config.default_retry_count = 2
# 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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment