Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-05 06:08:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-05 06:08:49 +0300
commit79cbe31b18159ea394c6f6e3027c1dc69bdabb75 (patch)
tree2f7290dd776762b18d0b4b95b81d380499f021ed /spec/lib/gitlab/ci
parente40710ab8a30f36d7c82d7d6497033291840eec9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/ci')
-rw-r--r--spec/lib/gitlab/ci/config/entry/retry_spec.rb22
1 files changed, 14 insertions, 8 deletions
diff --git a/spec/lib/gitlab/ci/config/entry/retry_spec.rb b/spec/lib/gitlab/ci/config/entry/retry_spec.rb
index f9efd2e014d..bb3c0b0004d 100644
--- a/spec/lib/gitlab/ci/config/entry/retry_spec.rb
+++ b/spec/lib/gitlab/ci/config/entry/retry_spec.rb
@@ -95,14 +95,20 @@ describe Gitlab::Ci::Config::Entry::Retry do
# values are valid. If they are not it means the documentation and this
# array must be updated.
RETRY_WHEN_IN_DOCUMENTATION = %w[
- always
- unknown_failure
- script_failure
- api_failure
- stuck_or_timeout_failure
- runner_system_failure
- missing_dependency_failure
- runner_unsupported
+ always
+ unknown_failure
+ script_failure
+ api_failure
+ stuck_or_timeout_failure
+ runner_system_failure
+ missing_dependency_failure
+ runner_unsupported
+ stale_schedule
+ job_execution_timeout
+ archived_failure
+ unmet_prerequisites
+ scheduler_failure
+ data_integrity_failure
].freeze
RETRY_WHEN_IN_DOCUMENTATION.each do |reason|