Merge pull request #7815 from Matt-Yorkley/dev-retries

Move Rspec retries count to CI config and remove in local environment
This commit is contained in:
Andy Brett
2021-06-21 09:09:44 -07:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ env:
DISABLE_KNAPSACK: true
TIMEZONE: UTC
COVERAGE: true
RSPEC_RETRY_RETRY_COUNT: 3
jobs:
test-controllers-and-serializers:

View File

@@ -101,7 +101,7 @@ RSpec.configure do |config|
# Show retries in test output
config.verbose_retry = true
# Set maximum retry count
config.default_retry_count = 3
config.default_retry_count = 0
# Force colored output, whether or not the output is a TTY
config.color_mode = :on