summaryrefslogtreecommitdiff
path: root/tool/test-bundled-gems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/test-bundled-gems.rb')
-rw-r--r--tool/test-bundled-gems.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index d4c45332ab..3f4c74b46a 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -17,7 +17,13 @@ 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} -Ilib"
+
+ if gem == "typeprof"
+ #test_command << " -I../rbs/lib"
+ end
+
+ test_command << " #{rake} test"
first_timeout = 600 # 10min
if gem == "rbs"