mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-01 23:47:50 +00:00
Don't use all cores processors for tests
Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
parent
aa9e33af1d
commit
2d41dd8f08
@ -16,7 +16,7 @@ allprojects {
|
||||
maxHeapSize = "2G"
|
||||
ignoreFailures = false
|
||||
failFast = true
|
||||
maxParallelForks = (Runtime.getRuntime().availableProcessors()).takeIf { it > 0 } ?: 1
|
||||
maxParallelForks = (Runtime.getRuntime().availableProcessors() - 1).takeIf { it > 0 } ?: 1
|
||||
|
||||
reports.html.isEnabled = false
|
||||
reports.junitXml.isEnabled = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user