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>2021-11-08 21:09:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-08 21:09:52 +0300
commitf18d1ffec0ecaae592a0ccd708ce77146f5f37e3 (patch)
tree5abbec71d01d6f561089878e7569d3a5b62a917a /spec/support
parent05db4ead6d5c73cf62ad95d80ccac415bc3bf3cd (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/flaky_tests.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/flaky_tests.rb b/spec/support/flaky_tests.rb
index c619f1412f1..535df64f890 100644
--- a/spec/support/flaky_tests.rb
+++ b/spec/support/flaky_tests.rb
@@ -2,7 +2,7 @@
return unless ENV['CI']
return unless ENV['SKIP_FLAKY_TESTS_AUTOMATICALLY'] == "true"
-return if ENV['CI_MERGE_REQUEST_LABELS'].include?(/pipeline:run-flaky-tests/)
+return if ENV['CI_MERGE_REQUEST_LABELS'].to_s.include?('pipeline:run-flaky-tests')
require_relative '../tooling/rspec_flaky/report'