目前我在项目的根文件夹中有cucumber.yml
。这就是我的文件夹结构现在的样子:
root
|-->config
| |-->cucumber_config
| |->data
| |->environments
|
|-->features
|-->step_definitions
|-->support
|-->pages
如果可能,我需要在cucumber.yml
内移动cucumber_config
。
是否有设置或我需要设置的任何内容以允许此操作?
感谢您的帮助,谢谢。
答案 0 :(得分:0)
取自黄瓜源代码:
# Locates cucumber.yml file. The file can end in .yml or .yaml,
# and be located in the current directory (eg. project root) or
# in a .config/ or config/ subdirectory of the current directory.
def cucumber_file
@cucumber_file ||= Dir.glob('{,.config/,config/}cucumber{.yml,.yaml}').first
end
因此,除非您更改实施,否则答案为“否”。