为什么自动测试有时会在失败后立即重新运行所有规范?

发布于 2024-10-15 02:12:40 字数 95 浏览 1 评论 0原文

有时,在自动测试运行规范并遇到失败后,它会立即重新运行项目中的所有规范,这(a)我不需要并且(b)清除终端,因此我无法读取失败的结果规格

为什么会发生这种情况?

Sometimes after autotest runs specs and encounters an failure, it will immediately re-run all the specs in the project, which (a) I have no need for and (b) clears the terminal so I can't read the results of the failed spec.

Why is this happening?

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

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

发布评论

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

评论(1

桃扇骨 2024-10-22 02:12:40

发生这种情况的原因有多种:

  1. 所触及的文件不在忽略列表中或具有映射。
  2. 自动测试无法解析您的测试输出以获取失败状态,并假设返回失败树是合理的。
  3. 您的测试向自动测试发送了中断。

This can happen for a number of reasons:

  1. A file was touched that is not in the ignore list or has a mapping.
  2. Autotest could not parse your test output for fail state and assumed that walking back up the failure tree is reasonable.
  3. Your tests sent an interrupt to autotest.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文