summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2022-10-16 20:39:46 +0900
committernagachika <nagachika@ruby-lang.org>2022-10-16 20:39:46 +0900
commit9fc7df7504f41a7f370e62a004c3fc0abc439295 (patch)
tree297042fc999662eafb2b83340c1dd57b64d6e035 /tool
parentc1129491bbf072862d10caa5b97acaa59437ecf3 (diff)
merge revision(s) 464f73a5f0c1042bfefdd367b330cbdcafffca95:
Do not load library files from repository only for test What we want to test should be the bundled and to be installed files, but not the upstream. --- tool/test-bundled-gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'tool')
-rw-r--r--tool/test-bundled-gems.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index 6312e1872d..4fcc787dc6 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -21,7 +21,7 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
next if ARGV.any? {|pat| !File.fnmatch?(pat, gem)}
puts "#{github_actions ? "##[group]" : "\n"}Testing the #{gem} gem"
- test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake} test"
+ test_command = "#{ruby} -C #{gem_dir}/src/#{gem} #{rake} test"
first_timeout = 600 # 10min
if gem == "typeprof"