Run test in parallel.

This commit is contained in:
Benoit Marty
2023-02-13 18:16:13 +01:00
parent 41e63173b3
commit 13e016c690

View File

@@ -151,6 +151,12 @@ allprojects {
}
}
allprojects {
tasks.withType<Test> {
maxParallelForks = (Runtime.getRuntime().availableProcessors() / 2).coerceAtLeast(1)
}
}
allprojects {
apply(plugin = "kover")
}