You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I have a maven task configured and I'm able to pass -Dcucumber.options to it.
e.g.
-Dbrowser=chrome -Denv=QA "-Dcucumber.options=--tags @SANITY" clean verify
how do you i pass multiple tags? I tried
"-Dcucumber.options=--tags @SANITY --tags @SANITY1" but the plan says
Running RunTest
None of the features at [classpath:features] matched the filters: [@SANITY, @SANITY1]
$ mvn clean verify -Dcucumber.filter.tags="@sanity1 and @sanity2"
Hi Shash
Do any of your Scenarios have both the "@SANITY" and "@SANTIY1" tags at the same time. The Cucumber options expressions you have specified is using a logical AND on the tags. A logical OR would be "-Dcucumber.options=--tags @SANITY,@SANITY1", notice the comma separating the tags
Cheers
Alan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to do this. But my features with ignore tags are also executing.
How can i resolve that problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
mvn clean verify -Dcucumber.filter.tags="@sanity and @vG and ~@ignore"
Maybe something like this. But this isn't working
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.