From a37d0fabf7c371b2362eaef9302409261d4454a2 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Tue, 15 Oct 2024 13:56:28 -0400 Subject: [PATCH] Fix 'integTest' not called with test workflows during release Signed-off-by: Andriy Redko --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 350f0c8fbe..57a79ae3cd 100644 --- a/build.gradle +++ b/build.gradle @@ -564,6 +564,7 @@ task integrationTest(type: Test) { } } +tasks.integTest.dependsOn(integrationTest) tasks.integrationTest.finalizedBy(jacocoTestReport) // report is always generated after integration tests run //run the integrationTest task before the check task