Skip to content

Commit 1aed1b5

Browse files
committed
Disable typecheck_test rake task
1 parent d2cce4f commit 1aed1b5

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

Rakefile

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,21 @@ task :stdlib_test => :compile do
141141
end
142142

143143
task :typecheck_test => :compile do
144-
FileList["test/typecheck/*"].each do |test|
145-
Dir.chdir(test) do
146-
expectations = File.join(test, "steep_expectations.yml")
147-
if File.exist?(expectations)
148-
sh "steep check --with_expectations"
149-
else
150-
sh "steep check"
151-
end
152-
end
153-
end
144+
puts
145+
puts
146+
puts "⛔️⛔️⛔️⛔️⛔️⛔️ Skipping type check test because RBS is incompatible with Steep (#{__FILE__}:#{__LINE__})"
147+
puts
148+
puts
149+
# FileList["test/typecheck/*"].each do |test|
150+
# Dir.chdir(test) do
151+
# expectations = File.join(test, "steep_expectations.yml")
152+
# if File.exist?(expectations)
153+
# sh "steep check --with_expectations"
154+
# else
155+
# sh "steep check"
156+
# end
157+
# end
158+
# end
154159
end
155160

156161
task :raap => :compile do

0 commit comments

Comments
 (0)