run test in parallel
This commit is contained in:
parent
828612fe65
commit
c8516f7d40
|
@ -58,3 +58,9 @@ allprojects {
|
|||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
|
||||
subprojects {
|
||||
tasks.withType(Test) {
|
||||
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue