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.
2 parents bc1f5a2 + 3e78385 commit 556607eCopy full SHA for 556607e
app/build.gradle.kts
@@ -327,7 +327,7 @@ tasks.withType<JavaCompile>().configureEach {
327
328
tasks.withType<Test>().configureEach {
329
// Run tests in parallel
330
- maxParallelForks = Runtime.getRuntime().availableProcessors().div(2)
+ maxParallelForks = maxOf(1, Runtime.getRuntime().availableProcessors().div(2))
331
332
// increased logging for tests
333
testLogging.events("passed", "skipped", "failed")
0 commit comments