Do not run android codegen tests with plugin, introduce a separate task

This commit is contained in:
Ilya Gorbunov
2017-10-25 05:31:05 +03:00
parent 6c5d78d8d5
commit 3fe2298855
+6 -4
View File
@@ -368,6 +368,9 @@ tasks {
dependsOn("examplesTest") dependsOn("examplesTest")
} }
"androidCodegenTest" {
dependsOn(":compiler:android-tests:test")
}
"jps-tests" { "jps-tests" {
dependsOn("dist") dependsOn("dist")
@@ -393,12 +396,11 @@ tasks {
"idea-plugin-additional-tests") "idea-plugin-additional-tests")
} }
"android-tests" { "android-ide-tests" {
dependsOn("dist") dependsOn("dist")
dependsOn(":plugins:android-extensions-ide:test", dependsOn(":plugins:android-extensions-ide:test",
":idea:idea-android:test", ":idea:idea-android:test",
":kotlin-annotation-processing:test", ":kotlin-annotation-processing:test")
":compiler:android-tests:test")
} }
"plugins-tests" { "plugins-tests" {
@@ -416,7 +418,7 @@ tasks {
"idea-plugin-tests", "idea-plugin-tests",
"jps-tests", "jps-tests",
"plugins-tests", "plugins-tests",
"android-tests", "android-ide-tests",
":generators:test" ":generators:test"
) )
} }