We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50c33f commit f40e3ebCopy full SHA for f40e3eb
1 file changed
build.gradle
@@ -192,7 +192,9 @@ tasks.register('testNG', Test) {
192
// Tell it to use TestNG explicitly
193
useTestNG()
194
195
- maxParallelForks = 1
+ maxHeapSize = "1200m"
196
+ maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
197
+ // maxParallelForks = 1
198
199
// Ensure JUnit-compatible XML output in the standard location
200
reports {
0 commit comments