Maven – run a specific testng test group via maven

maventestng

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

Best Answer

Try

mvn test -Dgroups=group3,group2
Related Topic