Merge pull request #9164 from MikeMcQuaid/network-retry-timeout

spec_helper: increase needs_network timeout and retry.
This commit is contained in:
Mike McQuaid 2020-11-17 12:29:17 +00:00 committed by GitHub
commit 7fa3bcc23f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,8 @@ RSpec.configure do |config|
config.default_retry_count = 2 config.default_retry_count = 2
config.around(:each, :needs_network) do |example| config.around(:each, :needs_network) do |example|
example.run_with_retry retry: 3, retry_wait: 3 example.metadata[:timeout] ||= 120
example.run_with_retry retry: 5, retry_wait: 5
end end
end end