问题
I have to ignore certain .feature test files for my integration test suite using karate framework. Is there any way in which i can selectively exclude certain files.
回答1:
Yes, the answer is tags.
Example:
@ignore
Feature: my feature
Scenario:
# blah
And on the command-line:
mvn test -Dcucumber.options="--tags ~@ignore" -Dtest=MyIntegrationSuiteRunner
来源:https://stackoverflow.com/questions/48009320/how-do-i-selectively-ignore-certain-feature-files-in-my-build-while-using-karat