我有一个愚蠢而奇怪的问题。 我接管了一位来自BDD-Cucumber-ruby的同事的测试套件。 功能文件顶部的标签很少,可以使用。
@webview
Feature:
As a product owner
I want to blah blah
So that blah blah
如果我在方案的顶部添加标记,则无法识别。
@runagain
Scenario: Sign in
Given..
When ..
Then..
当我跑步时..
D:\application\tests\cucumber>cucumber -p default -t @runagain
Using the default profile...
0 scenarios
0 steps
0m0.003s
更新: cucumber.yml
<% run_without_these_tags = "--tags ~@wip --tags ~@manual --tags ~@out_of_scope --tags ~@ignore --tags ~@pending" %>
<% overnight_tags = "--tags ~@wip --tags ~@manual --tags ~@out_of_scope --tags ~@ignore" %>
<% require_features_directory = "-r features" %>
<% publish_to_testrail = "--format Cukerail::Sender --out dummy --format pretty" %>
default: <%= run_without_these_tags %> <%= require_features_directory %> --format pretty
这是我发布的最愚蠢的查询。但这可能会让我烦恼,也许有人可以帮助我指出我需要做的简单改变/错误撤消。