Try more retries

This commit is contained in:
Oliver Günther
2024-11-12 14:41:50 +01:00
parent 74c257145a
commit 7a62abbe40
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ services:
- RUBY_VERSION
environment:
CI_JOBS: "${CI_JOBS}"
RSPEC_RETRY_RETRY_COUNT: "${CI_RETRY_COUNT:-3}"
RSPEC_RETRY_RETRY_COUNT: "${CI_RETRY_COUNT:-4}"
CAPYBARA_AWS_ACCESS_KEY_ID: "${CAPYBARA_AWS_ACCESS_KEY_ID}"
CAPYBARA_AWS_SECRET_ACCESS_KEY: "${CAPYBARA_AWS_SECRET_ACCESS_KEY}"
tmpfs:
+1 -1
View File
@@ -21,7 +21,7 @@ RSpec.configure do |config|
# Retry JS feature specs, but not during single runs
if ENV["CI"]
config.around :each, :js do |ex|
ex.run_with_retry retry: 2
ex.run_with_retry retry: ENV["RSPEC_RETRY_RETRY_COUNT"].to_i
end
end
end