We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As today, the test engine runs every feature it finds in the classpath but it would be nice to have an option to selectively run a feature file, like:
mvn test -Dquarkus.cucumber.features=MyFeature
The text was updated successfully, but these errors were encountered:
I think this should work right now: -Dcucumber.features=MyFeature
-Dcucumber.features=MyFeature
Could you please give it a try and let me know if this works
Sorry, something went wrong.
Tried it again but does not seem to be working
Tags are working fine for me, if you put a tag (e.g @only above the feature):
@only
mvn verify -Dcucumber.filter.tags="@only"
Although it doesn't help with running specific feature by feature name
@lburgazzoli I was able to run single scenario with the next command
mvn verify -Dcucumber.filter.name="my scenario"
Assuming you have:
Scenario: my scenario When ...
No branches or pull requests
As today, the test engine runs every feature it finds in the classpath but it would be nice to have an option to selectively run a feature file, like:
The text was updated successfully, but these errors were encountered: