gpt4 book ai didi

ruby - 如何使用 rake 运行指定目录中的所有 ruby​​ 文件

转载 作者:数据小太阳 更新时间:2023-10-29 08:04:49 26 4
gpt4 key购买 nike

我已经安装了 Ruby 1.8.7、ci_reporter 1.8.4、测试单元 2.5.4、rake 10.0.3。

我的 testA.rb, testB.rb ... testZ.rb :

require 'includeA.rb'
require 'includeB.rb'
require 'includeC.rb'
require 'includeD.rb'

Begin of the code...
... End of the code

这是我的 rakefile :

require 'rake/testtask'
require 'rubygems'
gem 'ci_reporter'
gem 'test-unit'
require 'test/unit'
require 'ci/reporter/rake/test_unit'

task :default => [:test]

task :test do
sh "ruby -I E:/pathToIncludesA/" " -I E:/pathToIncludesB/" " -I E:/pathToIncludesC/" " -I E:/pathToIncludesD/" " E:/pathToTests/testA.rb"
sh "ruby -I E:/pathToIncludesA/" " -I E:/pathToIncludesB/" " -I E:/pathToIncludesC/" " -I E:/pathToIncludesD/" " E:/pathToTests/testB.rb"
...
sh "ruby -I E:/pathToIncludesA/" " -I E:/pathToIncludesB/" " -I E:/pathToIncludesC/" " -I E:/pathToIncludesD/" " E:/pathToTests/testZ.rb"
end

然后我启动测试执行:

rake CI_REPORTER=reports test

一切正常,但现在我的“pathToTest”中将添加很多测试,现在我想运行所有测试,但在我的 rakefile 中只有一个 cmd。

我在 Windows 批处理 cmd 中尝试这样做:for/r "E:\ExempleOfTests\"%%i in (*.rb) do ruby​​ "%%i"

它运行文件夹 ExempleOfTests 中的所有 .rb 文件。

所以现在我正在重构我的 rakefile,试图合并 windows batch cmd。

这是我的新 rakefile :

require 'rake/testtask'
require 'rubygems'
gem 'ci_reporter'
gem 'test-unit'
require 'test/unit'
require 'ci/reporter/rake/test_unit'

task :default => [:test]

task :test do
sh "for /r E:/pathToTests/ %%i in (*.rb) do ruby -I E:/pathToIncludesA/ -I E:/pathToIncludesB/ -I E:/pathToIncludesC/ -I E:/pathToIncludesD/ %%i"
end

但是当我使用“rake CI_REPORTS=reports test”启动时我的输出控制台:

unexpected %%i
rake aborted
commande failed with status (1) ...

有人可以帮我吗?

最佳答案

你可以这样运行它:

find path/to/test/folder -name '*_test.rb' | xargs -n1 -I{} bundle exec ruby -Itest {}

如果需要,然后将其包装到 rake 任务中。

关于ruby - 如何使用 rake 运行指定目录中的所有 ruby​​ 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15880645/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com