summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-16 21:34:12 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-16 21:34:12 +0100
commitab6de4043c08ca67a03e24b157a14bae3cf5f914 (patch)
tree6798bbb1a464ce3946457568acadf454359fcb9d
parent4cb03ec428c9233fc13acbaf4d73a4518b676cd4 (diff)
downloadbundler-ab6de4043c08ca67a03e24b157a14bae3cf5f914.tar.gz
Fix
-rw-r--r--.github/workflows/windows.yml2
-rwxr-xr-xbin/parallel_rspec4
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index b974da44fc..ac09acb476 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -35,5 +35,5 @@ jobs:
shell: bash
- name: Run specs
- run: bin/parallel_rspec spec
+ run: parallel_tests/bin/parallel_rspec spec
shell: bash
diff --git a/bin/parallel_rspec b/bin/parallel_rspec
index fb0f8b4dd9..c6fb33d583 100755
--- a/bin/parallel_rspec
+++ b/bin/parallel_rspec
@@ -1,4 +1,6 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
-load File.expand_path("../parallel_tests/bin/parallel_rspec", __dir__)
+require_relative "../spec/support/rubygems_ext"
+
+Spec::Rubygems.gem_load("parallel_tests", "parallel_rspec")