From 3fe2298855ec397640dc09f3afb6bf094055aa7e Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Wed, 25 Oct 2017 05:31:05 +0300 Subject: [PATCH] Do not run android codegen tests with plugin, introduce a separate task --- build.gradle.kts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 45e5190dbec..6366080ca4f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" ) }