如何进行自动测试以在出现故障后继续运行我的规范而不停止?

发布于 2024-10-15 12:59:35 字数 266 浏览 3 评论 0原文

这似乎是一个非常奇怪的问题,相信我,在在这里提出问题之前我已经做了很多搜索。我正在使用最新版本的 Rails 3 和 Rspec 2 以及 Ruby 1.9.2,当它们失败时,我无法进行自动测试以正确运行我的规范。

当我的所有规格都通过时,它的效果就很好;一旦我做出改变,规范就会重新运行,一切都很好。

当我遇到规范失败时,自动测试会停止,而不是等待我进行另一次更改。因此,它有点违背了自动测试的整个目的 - 我的测试变成红色,除非我再次手动运行自动测试,否则我无法再次将它们变为绿色。

This seems like a very bizarre problem and believe me I've done a lot of searching before posing the question here. I am using the latest version of Rails 3 and Rspec 2 with Ruby 1.9.2, and I can't get autotest to run my specs properly when they fail.

When all of my specs pass, it works great; as soon as I make a change, the specs re-run and all is well.

When I have a spec failure, autotest halts instead of waiting for me to make another change. So it sort of defeats the whole purpose of autotest - my tests go red and I don't get to make them green again unless I manually run autotest again.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独患者 2024-10-22 12:59:35

您可以查看链接http://ph7spot.com/musings/getting-started-with-autotest以确保您没有错过任何内容。

may you look at the link http://ph7spot.com/musings/getting-started-with-autotest to ensure that you have not missed something.

平生欢 2024-10-22 12:59:35

您可以使用:

找到 . -cmin -1

检查最后一分钟发生了什么变化,或者运行

自动测试-v

获取触发重新运行的日志。

之后,只需编辑项目根目录中的 .autotest 文件即可忽略攻击性文件,例如:

Autotest.add_hook :initialize do |autotest|
  %w{.git .svn .hg .DS_Store ._* vendor tmp log doc solr}.each do |exception|
    autotest.add_exception(exception)
  end
end

You can use :

find . -cmin -1

to check what changed in the last minute, or run

autotest -v

to have the log of what triggering the rerun.

After that, just ignore the offensive files by editing the .autotest file in the root of your project, for example :

Autotest.add_hook :initialize do |autotest|
  %w{.git .svn .hg .DS_Store ._* vendor tmp log doc solr}.each do |exception|
    autotest.add_exception(exception)
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文