tags:

views:

188

answers:

1

I have several testng test groups, e.g. group1,group2,group3... These are defined in my pom.xml and all get run when I execute "mvn test". What do I need to run to only execute one group without having to modify the groups configured in the pom.xml.

i.e mvn test group2 mvn test group1 mvn test group3

A: 

Try mvn test -Dgroups=group3,group2

Eugene Kuleshov
That did it, thanks.
Tom Eustace