You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when running tests with multiple groups, we can use syntax something like mvn test -Dgroups="groupA,groupB". This will run any tests that are tagged with "groupA" OR "groupB".
Please create an option to combine multiple groups with the AND condition. So if I specify something like mvn test -Dgroups="group1+group2", this will run any tests that are tagged with "group1" AND "group2".
There is additional discussion in the testng-users forum, here.
The text was updated successfully, but these errors were encountered:
Additional information: For my use case, my entire test suite has something like two-dozen different groups. At run time (in CI) I have no way of knowing what are all the groups that have been created. Adding all these as "exclude groups" is not feasible.
Currently when running tests with multiple groups, we can use syntax something like
mvn test -Dgroups="groupA,groupB"
. This will run any tests that are tagged with "groupA" OR "groupB".Please create an option to combine multiple groups with the AND condition. So if I specify something like
mvn test -Dgroups="group1+group2"
, this will run any tests that are tagged with "group1" AND "group2".There is additional discussion in the testng-users forum, here.
The text was updated successfully, but these errors were encountered: