Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,16 @@ tasks.register('testNG', Test) {
// Tell it to use TestNG explicitly
useTestNG()

maxParallelForks = 1
maxHeapSize = "1200m"
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
// maxParallelForks = 1

// Ensure JUnit-compatible XML output in the standard location
reports {
html.required = true
junitXml.required = true
junitXml.outputLocation = file("${buildDir}/test-results/test") // ← important
}

// Ensure JUnit-compatible XML output in the standard location
reports {
Expand Down
Loading