--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.
|
<suite name="Suite 1"> |
|
|
|
<test name="Suite 1 Tests"> |
|
<classes> |
|
<class name="test.xml.XmlVerifyTest"> |
|
<methods> |
|
<include name="simple"/> |
|
</methods> |
|
</class> |
|
</classes> |
|
</test> |
|
<suite-files> |
|
<suite-file path="./suite1-1.xml" /> |
|
<suite-file path="./suite1-2.xml" /> |
|
</suite-files> |
| </suite> |
Hey Tim,I tried what you suggested to run multiple testng.xml files through 1 testng.xml the following way:
<suite-files> <suite-file path="./suite1-1.xml" />
<suite-file path="./suite1-2.xml" />
</suite-files>
The problem i am facing is that the tests in both the included suites run sequentially and not parallely. Do you know what do we have to do to get them to run in parallel?
To view this discussion on the web visit https://groups.google.com/d/msg/testng-users/-/kawu-1eh7_sJ.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.