Support parallel execution of IDEA tests

This commit is contained in:
Mikhael Bogdanov
2019-04-08 21:23:22 +02:00
parent 8ae9e7a106
commit 8287e448d1
3 changed files with 29 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
tasks.withType<Test> {
maxParallelForks = Math.max(Runtime.getRuntime().availableProcessors() / 2, 1)
}
plugins {
kotlin("jvm")
id("jps-compatible")