守卫+黄瓜=>自定义保护文件
我正在尝试正确设置我的 guard 文件,以便正常情况下仅运行 cucumber 正在进行中的功能。然后,一旦它们完成,我想运行我的所有功能(手动)。我已经修改了我的防护文件以实现此目的,但 run_all 不起作用。它只运行@wip 功能。
guard 'cucumber', :cli => "--no-profile --tags @wip --format 'pretty'", :run_all => { :cli => "--no-profile --color --format 'progress' --strict" } do
watch(%r{^features/.+\.feature$})
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end
:run_all 方法如何工作?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最终必须为每个定义格式。
Ended up having to define the format for each.
如果您尝试运行除 @wip 之外的所有内容,则需要添加 ~@wip
If you are trying to run everything BUT @wip, you need to add ~@wip