From 46f2c6ee10a5ae11158c7d1df410705291447142 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Mon, 20 Dec 2021 14:53:13 +0300 Subject: [PATCH] [Native][tests] Remove test grouping tasks: dailyTest & fullTest Need to rethink test grouping tasks before returning them back. --- native/native.tests/build.gradle.kts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/native/native.tests/build.gradle.kts b/native/native.tests/build.gradle.kts index 63b3416ac2f..cb5f5fb7417 100644 --- a/native/native.tests/build.gradle.kts +++ b/native/native.tests/build.gradle.kts @@ -146,12 +146,8 @@ fun groupingTest(taskName: String, vararg dependencyTasks: Any) = getOrCreateTas val infrastructureTest = blackBoxTest("infrastructureTest", "infrastructure") val externalTest = blackBoxTest("externalTest", "external") -// Tasks that do not run tests directly, but group other test tasks. Most frequent use case: running groups of tests on CI server. -val dailyTest = groupingTest("dailyTest", externalTest) -val fullTest = groupingTest("fullTest", dailyTest, infrastructureTest) - -// "test" task is created by convention. We can't just remove it. So, let it be just an alias for daily test task. -val test by groupingTest("test", dailyTest) +// "test" task is created by convention. We can't just remove it. So, let it be just an alias for external test task. +val test by groupingTest("test", externalTest) gradle.taskGraph.whenReady { allTasks.forEach { task ->