如何找到哪个 rspec 测试花费了这么长时间
我们的一个(或几个)测试花费了很长时间,我们希望对其进行优化。
我们已经进行了 1000 次测试,因此对我来说运行每个文件是不切实际的。
有没有一种简单的方法可以找到慢的?
这是 rspec 1.3
One (or a couple) of our tests are taking forever and we'd like to optimize them.
We have say 1000 tests so it's impractical for me to go through run each file.
Is there an easy to way to find the slow ones?
This is rspec 1.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 RSpec 2 和 3 中,您可以使用
--profile
标志或将--profile
添加到.rspec
文件中。这将跟踪前 10 个最慢的示例。对于 RSpec 1,您可以将
--format o
与spec
命令一起使用。它显示了一个基于文本的进度条,其中包含 10 个最慢示例的分析。有关更多详细信息请参阅此。In RSpec 2 and 3, you can use the
--profile
flag or add--profile
to your.rspec
file. This will track the top 10 slowest examples.For RSpec 1, you can use
--format o
withspec
command. It shows a text-based progress bar with profiling of 10 slowest examples. For more details see this.