Skip to content

Commit f2f3e75

Browse files
update ReadMe for custom parallel configuration
1 parent bcf5c06 commit f2f3e75

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,17 @@ export BROWSERSTACK_ACCESS_KEY=<browserstack-access-key>
1515
app: bs://<url>
1616
```
1717
* To run the test, execute command `mvn clean test`
18+
## Notes
19+
Presently the repo is configured to trigger 40 parallels. If you would like to change the number, you will have to update in three places
20+
* To trigger 80 tests in parallel, you can update the parallelsPerPlatform: 80 in the yml file . This can be updated to any number within your parallel license limit.
21+
* Update the dataProviderThreadCount to 80 in pom.xml
22+
```
23+
<property>
24+
<name>dataproviderthreadcount</name>
25+
<value>80</value>
26+
</property>
27+
```
28+
* Update the thread-count to 80 in the config/appium.testng xml file
29+
```
30+
<suite name="AppiumTest" parallel="methods" thread-count="80">
31+
```

0 commit comments

Comments
 (0)