最快的 Rails 测试运行程序:spork 和 zentest?

发布于 2024-09-14 07:49:05 字数 386 浏览 9 评论 0 原文

我遇到了一个关于慢速 rspec 测试的线程,这让我想知道哪个Rails 测试运行器配置将导致运行最快的重复测试?

我知道 ZenTest / autotest-rails 可以与

I ran across a thread about slow rspec tests that made me wonder which rails test runner configuration will result in the fastest running recurring tests?

I'm aware that ZenTest / autotest-rails can be used in conjunction with spork, but is that the fastest option?

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

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

发布评论

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

评论(1

陌生 2024-09-21 07:49:05

只是想告诉你我的经历......尽管这并不能回答你的问题。我还没有自动测试的经验,所以无法对此发表评论。这是带有 RSpec、DatabaseCleaner 和 FactoryGirl 的 Rails 3。以下是没有和有 spork 的结果:

Finished in 0.22748 seconds
3 examples, 0 failures

real    0m9.541s
user    0m8.733s
sys 0m0.772s



Finished in 0.24727 seconds
3 examples, 0 failures

real    0m0.605s
user    0m0.200s
sys 0m0.080s

因此,从 9.541 秒缩短到半秒。性能提升大约十倍。

Just wanted to tell you about my experiences.. even tho this doesn't answer you question. I don't have experience with autotest yet, so can't comment on that. This is Rails 3 with RSpec, DatabaseCleaner and FactoryGirl. Here are the results without and with spork:

Finished in 0.22748 seconds
3 examples, 0 failures

real    0m9.541s
user    0m8.733s
sys 0m0.772s



Finished in 0.24727 seconds
3 examples, 0 failures

real    0m0.605s
user    0m0.200s
sys 0m0.080s

So, from 9.541 seconds down to half a second. Roughly a ten fold performance boost.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文