运行“bundle exec rake”时travis.ci继续失败

时间:2013-10-21 15:24:13

标签: ruby unit-testing travis-ci

我正在尝试使用Travis.ci进行自动化测试。但是,在尝试执行bundle exec rake时,构建仍然失败。 这就是我所看到的......

$ bundle exec rake
rake aborted!
Don't know how to build task 'default'
/home/travis/.rvm/gems/ruby-2.0.0-p247/bin/ruby_noexec_wrapper:14:in `eval'
/home/travis/.rvm/gems/ruby-2.0.0-p247/bin/ruby_noexec_wrapper:14:in `<main>'
(See full trace by running task with --trace)

The command "bundle exec rake" exited with 1.

Done. Your build exited with 1.

我的单元测试位于主目录的test文件夹中,名为test_np_search.rb。我知道我不知何故应该将travis指向这个位置以运行单元测试,但我不知道如何做到这一点。

我已经多次阅读过travis.ci上的ruby相关文档并且已经在线查看了教程,但是我无法让它工作。

有问题的整个github存储库位于:https://github.com/IsmailM/NeuroPeptideSearch

Travis.CI链接在这里:https://travis-ci.org/IsmailM/NeuroPeptideSearch

我一直试图让这个分类一个多星期以来取得任何成功,所以如果有人能帮助我,我将非常感激。

很多谢谢

1 个答案:

答案 0 :(得分:9)

如果你想在travis上执行bundle exec rake,你必须确保它在你的本地机器上运行!

如果在没有提供任务名称的情况下调用rake,则会假定您要运行default-task。

如果您想将最小的测试套件作为默认任务运行,则必须执行此操作:

require "rake/testtask"

Rake::TestTask.new do |t|
  t.pattern = "test/**/*_test.rb"
end

task default: :test