diff options
author | Rémy Coutable <remy@rymai.me> | 2018-04-11 15:51:31 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-04-11 23:07:05 +0200 |
commit | d8a58f62bf9ef690b2398c00ae9b3e78071a655b (patch) | |
tree | 40763dd121e64196b70a352014e0b56137df4ba9 /scripts | |
parent | 947ed8b88281a618530ae30bc0fe1e3d61a3c1d9 (diff) | |
download | gitlab-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-x | scripts/prune-old-flaky-specs | 5 |
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 |