From d5b56bf2ea9fd2c100bfc16f6287bb2bab2cb085 Mon Sep 17 00:00:00 2001 From: Gavin Date: Sat, 17 Feb 2024 19:16:28 -0800 Subject: [PATCH] Test if test finalization works in shared config --- build.gradle | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index bba4f237..38c955f8 100644 --- a/build.gradle +++ b/build.gradle @@ -50,6 +50,7 @@ tasks.withType(Test) { // gradle thinks that classes annotated with @RunWith are tests excludeTestsMatching "*Tester" } + finalizedBy jacocoTestReport } jacocoTestReport { @@ -60,8 +61,7 @@ jacocoTestReport { } test { - // finalizing works in the shared config, but gets skipped in GHA...? - finalizedBy jacocoTestReport + // no special config needed } task testQuick(type: Test) { @@ -72,8 +72,6 @@ task testQuick(type: Test) { filter { excludeTestsMatching "*LongTest" } - // finalizing works in the shared config, but gets skipped in GHA...? - finalizedBy jacocoTestReport } // Custom java project layout