Unverified Commit 94d8dfed authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5327 from dearblue/notest

Ignore if `conf.enable_test` does not exist
parents 6d0b5102 9d1a659b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment