summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-05-24 14:30:08 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-05-27 13:03:22 +0200
commit4acd7dd62f367789c0f09c0fbff68e28e2ededf7 (patch)
treefa54c1794a548b6a3468d5a8a00bb9eac10fd670
parentb88d13242009ad2ac80aa7c4ffd702eba9271a6b (diff)
downloadbundler-4acd7dd62f367789c0f09c0fbff68e28e2ededf7.tar.gz
Use the `:shell` bisect running
RSpec warns that the default `:fork` is much faster but it does not always work. It seems to be the case for us, since bisection seems to hang there when using that runner.
-rw-r--r--spec/spec_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 3031d3019d..29b292968d 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -58,6 +58,8 @@ RSpec.configure do |config|
# forever due to memory constraints
config.fail_fast ||= 25 if ENV["CI"]
+ config.bisect_runner = :shell
+
if ENV["BUNDLER_SUDO_TESTS"] && Spec::Sudo.present?
config.filter_run :sudo => true
else