在使用空手道框架时,我如何有选择地忽略构建中的某些 .feature 文件?
How do i selectively ignore certain .feature files in my build while using karate framework?
对于使用 karate 框架的集成测试套件,我必须忽略某些 .feature 测试文件。有什么方法可以选择性地排除某些文件。
是的,答案是tags。
示例:
@ignore
Feature: my feature
Scenario:
# blah
并且在命令行上:
mvn test -Dcucumber.options="--tags ~@ignore" -Dtest=MyIntegrationSuiteRunner
对于使用 karate 框架的集成测试套件,我必须忽略某些 .feature 测试文件。有什么方法可以选择性地排除某些文件。
是的,答案是tags。
示例:
@ignore
Feature: my feature
Scenario:
# blah
并且在命令行上:
mvn test -Dcucumber.options="--tags ~@ignore" -Dtest=MyIntegrationSuiteRunner