4

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.

Peter Thomas
  • 54,465
  • 21
  • 84
  • 248
Shriram
  • 123
  • 2
  • 5

1 Answers1

3

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
Peter Thomas
  • 54,465
  • 21
  • 84
  • 248