From e1bdaa551dbe551ff335ec37f9b1ef1682afad2a Mon Sep 17 00:00:00 2001 From: Martin Ndegwa Date: Thu, 23 Jun 2022 11:21:31 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20CI=20Build=20=F0=9F=92=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- opensrp-growth-monitoring/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opensrp-growth-monitoring/build.gradle b/opensrp-growth-monitoring/build.gradle index 9db563e..c5a7a4c 100644 --- a/opensrp-growth-monitoring/build.gradle +++ b/opensrp-growth-monitoring/build.gradle @@ -44,7 +44,7 @@ android { debug { buildConfigField "int", "GROWTH_MONITORING_SYNC_TIME", '15' - testCoverageEnabled true + testCoverageEnabled false //Weird bug fix : https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/issues/183 } } @@ -83,6 +83,7 @@ android { tasks.withType(Test) { jacoco.includeNoLocationClasses = true + jacoco.excludes = ['jdk.internal.*'] }