Question

I am trying to set the "name" option for Cucumber to be able to run a specific feature or scenario.

I have entered this,

mvn test -DCucumber.Options--name="MyFeatureName"

but it just runs all the features and doesn't give an error.

Any ideas?

Était-ce utile?

La solution

Here is a snippet from the Cucumber-JVM repo on how to run the java-helloworld example by passing cucumber options:

mvn test -Dcucumber.options="--format json-pretty --glue classpath:cucumber/examples/java/helloworld src/test/resources"

Keep in mind that it will override all the options in the @Cucumber.Options annotation you have on "RunCukesTest". I haven't got it to work for my own tests but maybe this will help.

So it looks like you need to give all the options needed to run cucumber, including the java class path and where the code is located using the "--glue" parameter.

Autres conseils

Your tests are running in separate JVM, so you need to specify that system property in the test plugin configuration (i.e. surefire or failsafe plugin config in your pom.xml).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top