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
+7 -5
View File
@@ -368,6 +368,9 @@ tasks {
dependsOn("examplesTest")
}
"androidCodegenTest" {
dependsOn(":compiler:android-tests:test")
}
"jps-tests" {
dependsOn("dist")
@@ -393,12 +396,11 @@ tasks {
"idea-plugin-additional-tests")
}
"android-tests" {
"android-ide-tests" {
dependsOn("dist")
dependsOn(":plugins:android-extensions-ide:test",
":idea:idea-android:test",
":kotlin-annotation-processing:test",
":compiler:android-tests:test")
":kotlin-annotation-processing:test")
}
"plugins-tests" {
@@ -409,14 +411,14 @@ tasks {
":plugins:uast-kotlin:test",
":kotlin-annotation-processing-gradle:test")
}
"ideaPluginTest" {
dependsOn(
"idea-plugin-tests",
"jps-tests",
"plugins-tests",
"android-tests",
"android-ide-tests",
":generators:test"
)
}