summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-04-11 15:51:31 +0200
committerRémy Coutable <remy@rymai.me>2018-04-11 23:07:05 +0200
commitd8a58f62bf9ef690b2398c00ae9b3e78071a655b (patch)
tree40763dd121e64196b70a352014e0b56137df4ba9 /scripts
parent947ed8b88281a618530ae30bc0fe1e3d61a3c1d9 (diff)
downloadgitlab-ce-d8a58f62bf9ef690b2398c00ae9b3e78071a655b.tar.gz
Fix scripts/prune-old-flaky-specs requires Bundler to run
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/prune-old-flaky-specs5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/prune-old-flaky-specs b/scripts/prune-old-flaky-specs
index ab03a0230cc..f7451fbd428 100755
--- a/scripts/prune-old-flaky-specs
+++ b/scripts/prune-old-flaky-specs
@@ -1,5 +1,10 @@
#!/usr/bin/env ruby
+# lib/rspec_flaky/flaky_examples_collection.rb is requiring
+# `active_support/hash_with_indifferent_access`, and we install the `activesupport`
+# gem manually on the CI
+require 'rubygems'
+
require_relative '../lib/rspec_flaky/report'
report_file = ARGV.shift