Hi Team

I am try to run parallel test suitesXML files from Maven as below

<plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-plugin</artifactId>
                                <version>2.12</version>

                                <configuration>
                                        
                                        <parallel>methods</parallel>
                                        <threadCount>2</threadCount>

                                        <suiteXmlFiles>
                                                
<suiteXmlFile>testng-vm1.xml</suiteXmlFile>
                                                
<suiteXmlFile>testng-vm2.xml</suiteXmlFile>

                                        </suiteXmlFiles>
                                </configuration>

                        </plugin>

When i execute with above code, the last testng xml file only (i.e
testng-vm2.xml) is running.  But i want to run both xml files parallel .


Please let me know is it possible to run parallel suites through Maven?

--
View this message in context: 
http://maven.40175.n5.nabble.com/How-to-run-parallel-test-suite-files-in-Maven-tp5712022.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to