From d6d19b563d07a30a583bc00c7f2b931f1d632991 Mon Sep 17 00:00:00 2001 From: Victor Petukhov Date: Sun, 29 Mar 2020 22:13:34 +0300 Subject: [PATCH] [Spec tests] Exclude spec consistency test from common `test` task --- compiler/tests-spec/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/compiler/tests-spec/build.gradle.kts b/compiler/tests-spec/build.gradle.kts index 0e2880fbbc9..3c8c568158b 100644 --- a/compiler/tests-spec/build.gradle.kts +++ b/compiler/tests-spec/build.gradle.kts @@ -35,3 +35,9 @@ val specConsistencyTests by task { includeTestsMatching("org.jetbrains.kotlin.spec.consistency.SpecTestsConsistencyTest") } } + +tasks.named("test") { + filter { + excludeTestsMatching("org.jetbrains.kotlin.spec.consistency.SpecTestsConsistencyTest") + } +}