Merge pull request #5327 from dearblue/notest

Ignore if `conf.enable_test` does not exist
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-02-06 18:28:53 +09:00
committed by GitHub
+2 -1
View File
@@ -21,7 +21,8 @@ namespace :test do |test_ns|
desc "build library tests"
task :lib => :all do
MRuby.each_target{|build| build.gem(core: 'mruby-test')}
test_build_ns["lib_without_loading_gem"].invoke
test = test_build_ns["lib_without_loading_gem"]
test.invoke if test
end
end