We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e5b2e5 commit 08d4a87Copy full SHA for 08d4a87
build.gradle.kts
@@ -65,6 +65,11 @@ subprojects {
65
testLogging {
66
events("skipped", "failed")
67
}
68
+
69
+ systemProperty("junit.jupiter.execution.parallel.enabled", "true")
70
+ systemProperty("junit.jupiter.execution.parallel.mode.default", "concurrent")
71
+ systemProperty("junit.jupiter.execution.parallel.config.strategy", "fixed")
72
+ systemProperty("junit.jupiter.execution.parallel.config.fixed.parallelism", "8")
73
74
75
gradle.properties
@@ -1 +1,2 @@
1
-kotlin.code.style=official
+kotlin.code.style=officia
2
+org.gradle.parallel=true
0 commit comments