Support parallelization in another IDE tests

This commit is contained in:
Mikhael Bogdanov
2019-04-09 14:48:18 +02:00
parent 18f76c31ca
commit 0d3f03a15a
22 changed files with 38 additions and 22 deletions
+1 -1
View File
@@ -35,6 +35,6 @@ testsJar {}
dist(targetName = the<BasePluginConvention>().archivesBaseName.removePrefix("kotlin-") + ".jar")
projectTest {
projectTest(parallel = true) {
workingDir = rootDir
}
@@ -74,7 +74,7 @@ sourceSets {
testsJar {}
projectTest {
projectTest(parallel = true) {
dependsOn(":kotlin-android-extensions-runtime:dist")
workingDir = rootDir
useAndroidSdk()
@@ -45,7 +45,7 @@ sourceSets {
testsJar {}
projectTest {
projectTest(parallel = true) {
workingDir = rootDir
dependsOn(":dist")
}
@@ -23,3 +23,7 @@ sourceSets {
}
runtimeJar()
projectTest(parallel = true) {
}
+1 -1
View File
@@ -36,6 +36,6 @@ testsJar()
dist(targetName = the<BasePluginConvention>().archivesBaseName.removePrefix("kotlin-") + ".jar")
projectTest {
projectTest(parallel = true) {
workingDir = rootDir
}
@@ -34,7 +34,7 @@ dist {
rename("kotlin-", "")
}
projectTest {
projectTest(parallel = true) {
dependsOn(":kotlin-stdlib:jvm-minimal-for-test:dist")
workingDir = rootDir
}
@@ -34,7 +34,7 @@ sourceSets {
"test" { projectDefault() }
}
projectTest {
projectTest(parallel = true) {
workingDir = rootDir
}
+1 -1
View File
@@ -59,6 +59,6 @@ sourceSets {
testsJar {}
projectTest {
projectTest(parallel = false) {
workingDir = rootDir
}