Cucumber - 如何配置它以使用“--format Pretty”作为默认值?

发布于 2024-09-01 04:33:08 字数 596 浏览 3 评论 0原文

我正在开始学习 Rails,并且在配置 Cucumber 来运行我的 bdd 测试时遇到了一些麻烦。 我想要的是运行

黄瓜的特点

,这转化为

黄瓜功能--格式漂亮

尝试编辑 config/cucumber.yml 文件(在 Rails 项目上)。 编辑了该行:

默认值:<%= std_opts %>特点

产生的

默认值:<%= std_opts %> --格式化漂亮的功能

但它会导致一些错误发生:

使用默认配置文件... 除一个格式化程序外,所有格式化程序都必须使用 --out,只有一个格式化程序可以打印到每个流(或 STDOUT)(运行时错误)

我可以做什么来使此选项“--format Pretty”默认? 另外,是否还有其他好的选项可以作为默认值以使结果更清晰?

谢谢。

I'm starting learning rails, and having some troubles on configure cucumber to run my bdd tests.
What I want is run

cucumber features

and this translate to

cucumber features --format pretty

I tried to do this editing the config/cucumber.yml file (on a rails project).
Edited the line:

default: <%= std_opts %> features

resulting on:

default: <%= std_opts %> --format pretty features

But it make some erros happen:

Using the default profile...
All but one formatter must use --out, only one can print to each stream (or STDOUT) (RuntimeError)

What I can do to make this option "--format pretty" default?
Also, is there any other good option to put as default to make result more clear?

Thank you.

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

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

发布评论

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

评论(2

多情出卖 2024-09-08 04:33:08

我发现这条消息:

使用默认配置文件...除了
一个格式化程序必须使用 --out,只有一个
可以打印到每个流(或 STDOUT)
(运行时错误)

与黄瓜错误有关,如发布在此网站上的

我的解决方法编辑 config/cucumber.yml 并将其保留如下:

std_opts = "--format rerun --out rerun.txt --strict --tags ~@wip"

%>

......

默认值:<%= std_opts %> -f 漂亮的功能

现在它起作用了。我认为这对我来说是阴天的,也许对这个(也许是另一个)“错误”有更多评论会很好。另外,如果有另一个有用的设置就好了。

I found that this message:

Using the default profile... All but
one formatter must use --out, only one
can print to each stream (or STDOUT)
(RuntimeError)

is related to a cucumber bug, like posted on this site

My workaround was edit config/cucumber.yml and left it like this:

std_opts = "--format rerun --out rerun.txt --strict --tags ~@wip"

%>

.....

default: <%= std_opts %> -f pretty features

Now it worked. I think this is cloudy for me, and maybe some more comments on this (and maybe another) 'bug' would be nice. Also, another useful settings would be nice.

羁绊已千年 2024-09-08 04:33:08

默认值:<%= run_with_these_tags %> -f 漂亮 -f json -o json_report/report.json

default: <%= run_with_these_tags %> -f pretty -f json -o json_report/report.json

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