We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5e826 commit d7f3d1fCopy full SHA for d7f3d1f
build.gradle.kts
@@ -81,6 +81,7 @@ allprojects {
81
options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000"))
82
}
83
tasks.withType<Test>().configureEach {
84
+ maxParallelForks = (Runtime.getRuntime().availableProcessors() / 2).takeIf { it > 0 } ?: 1
85
testLogging {
86
events(FAILED)
87
exceptionFormat = FULL
0 commit comments