Skip to content

Commit af9ad87

Browse files
committed
WIP: Debug ENV on CI
1 parent 9a01e86 commit af9ad87

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
turbo_tests (1.1.1)
4+
turbo_tests (1.2.0)
55
bundler
66
parallel_tests (~> 3.3)
77
rspec (~> 3.10.0)
@@ -12,8 +12,8 @@ GEM
1212
coderay (1.1.3)
1313
diff-lcs (1.4.4)
1414
method_source (1.0.0)
15-
parallel (1.20.0)
16-
parallel_tests (3.3.0)
15+
parallel (1.20.1)
16+
parallel_tests (3.4.0)
1717
parallel
1818
pry (0.13.1)
1919
coderay (~> 1.1)

lib/turbo_tests/cli.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# frozen_string_literal: true
22

3-
require "turbo_tests"
43
require "optparse"
54

65
module TurboTests

lib/turbo_tests/runner.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def start_subprocess(env, extra_args, tests, process_id)
9292
env["RUBYOPT"] = "-I#{File.expand_path("..", __dir__)}"
9393

9494
command = [
95-
"bundle", "exec", "rspec",
95+
ENV["BUNDLE_BIN_PATH"], "exec", "rspec",
9696
*extra_args,
9797
"--seed", rand(2**16).to_s,
9898
"--format", "ParallelTests::RSpec::RuntimeLogger",

lib/turbo_tests/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module TurboTests
2-
VERSION = "1.1.1"
2+
VERSION = "1.2.0"
33
end

0 commit comments

Comments
 (0)