Merge pull request #5331 from shuujii/explicit-top-level-task-to-clarify-in-tasks-test.rake

Explicit top level task to clarify in `tasks/test.rake`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-02-08 07:19:05 +09:00
committed by GitHub
+2 -2
View File
@@ -10,7 +10,7 @@ namespace :test do |test_ns|
end
desc "build and run command binaries tests"
task :bin => :all do
task :bin => "rake:all" do
test_ns["run:bin"].invoke
end
@@ -19,7 +19,7 @@ namespace :test do |test_ns|
namespace :build do |test_build_ns|
desc "build library tests"
task :lib => :all do
task :lib => "rake:all" do
MRuby.each_target{|build| build.gem(core: 'mruby-test')}
test = test_build_ns["lib_without_loading_gem"]
test.invoke if test