diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-02-08 07:19:05 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-08 07:19:05 +0900 |
| commit | bc21278a7cfb587a17799c494afa32ddd6a3d421 (patch) | |
| tree | ccbf6d02a775437e2675bf1ab41f146b5bb15f31 | |
| parent | 530afca2d7a1bb4347fcf440f2137fd87f5b5d64 (diff) | |
| parent | 3cf0e85ed7f50d3521eed41ec54e7430955625f8 (diff) | |
| download | mruby-bc21278a7cfb587a17799c494afa32ddd6a3d421.tar.gz mruby-bc21278a7cfb587a17799c494afa32ddd6a3d421.zip | |
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`
| -rw-r--r-- | tasks/test.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/test.rake b/tasks/test.rake index 7dda40e39..32a03fce6 100644 --- a/tasks/test.rake +++ b/tasks/test.rake @@ -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 |
