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.
Hi, If you are running self-managed environments and looking to adopt modern infrastructure, Bamboo Data Center can now be deployed in a Kubernetes cluster. By leveraging Kubernetes, you can easily...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.