如何向 Cucumber 传递要运行的功能文本文件? IE。重新运行.txt

发布于 2024-12-06 18:19:10 字数 372 浏览 0 评论 0原文

我终于弄清楚如何将失败的测试输出到 rerun.text

cucumber -p headless --format rerun --out rerun.txt 'path of feature files'

我们得到 rerun.txt 的输出文件,但是当我们尝试执行

cucumber 时-p headless rerun.txt 它会出现词法错误,因为 gherkin 无法接受此输入。我们如何在cucumber中运行该文件?我们还尝试只运行:

cucumber -p headless --format rerun --out rerun.txt

,没有列出路径,但它只会运行所有功能文件。 rerun.txt 确实包含我们失败的功能。

I finally figured out how to output failing tests to a rerun.text

cucumber -p headless --format rerun --out rerun.txt 'path of feature files'

We get the output file of rerun.txt but when we try to do

cucumber -p headless rerun.txt it gets a lexing error because gherkin can't take this input. How do we run the file in cucumber? We tried also just running:

cucumber -p headless --format rerun --out rerun.txt

with no path listed, but it will just run all the feature files. The rerun.txt does contain our failing features.

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

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

发布评论

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

评论(1

二智少女猫性小仙女 2024-12-13 18:19:10

来自 Cucumber 帮助文本 (cucumber -h):

使用 --format rerun --out features.txt 写出失败的内容
特征。您可以使用 cucumber @rerun.txt 重新运行它们。

所以你可能想使用:

cucumber -p headless @rerun.txt

From the cucumber help text (cucumber -h):

Use --format rerun --out features.txt to write out failing
features. You can rerun them with cucumber @rerun.txt.

So you'd probably want to use:

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