From 835de3083aec8e34aeb73cf07db00e3cf60c3342 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Thu, 9 Dec 2021 00:07:38 +0300 Subject: [PATCH] [Native][tests] Don't fail Gradle tasks if there are failed tests --- native/native.tests/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native/native.tests/build.gradle.kts b/native/native.tests/build.gradle.kts index 5647ebfeaf1..cb18ac3c377 100644 --- a/native/native.tests/build.gradle.kts +++ b/native/native.tests/build.gradle.kts @@ -86,6 +86,8 @@ fun Test.setUpBlackBoxTest(tag: String) { TestProperty.USE_CACHE.setUpFromGradleProperty(this) TestProperty.EXECUTION_TIMEOUT.setUpFromGradleProperty(this) + ignoreFailures = true // Don't fail Gradle task if there are failed tests. Let the subsequent tasks to run as well. + useJUnitPlatform { includeTags(tag) }