Run test in parallel.

This commit is contained in:
Benoit Marty
2023-02-13 18:16:13 +01:00
parent 6bb01d640f
commit a418d31fd6
+6
View File
@@ -151,6 +151,12 @@ allprojects {
}
}
allprojects {
tasks.withType<Test> {
maxParallelForks = (Runtime.getRuntime().availableProcessors() / 2).coerceAtLeast(1)
}
}
allprojects {
apply(plugin = "kover")
}