如何向 Cucumber 传递要运行的功能文本文件? IE。重新运行.txt
我终于弄清楚如何将失败的测试输出到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Cucumber 帮助文本 (
cucumber -h
):所以你可能想使用:
From the cucumber help text (
cucumber -h
):So you'd probably want to use: