如何找到哪个 rspec 测试花费了这么长时间

发布于 2024-11-27 17:45:27 字数 130 浏览 0 评论 0原文

我们的一个(或几个)测试花费了很长时间,我们希望对其进行优化。

我们已经进行了 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 技术交流群。

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

发布评论

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

评论(1

苹果你个爱泡泡 2024-12-04 17:45:27

在 RSpec 2 和 3 中,您可以使用 --profile 标志或将 --profile 添加到 .rspec 文件中。这将跟踪前 10 个最慢的示例。

对于 RSpec 1,您可以将 --format ospec 命令一起使用。它显示了一个基于文本的进度条,其中包含 10 个最慢示例的分析。有关更多详细信息请参阅此

rspec --profile -- path/to/file/spec.rb

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 with spec command. It shows a text-based progress bar with profiling of 10 slowest examples. For more details see this.

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