You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wf...@apache.org on 2014/11/25 19:35:04 UTC

incubator-aurora git commit: Bump the min coverage values.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master a2fc81803 -> 22dd64115


Bump the min coverage values.

Reviewed at https://reviews.apache.org/r/28409/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/22dd6411
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/22dd6411
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/22dd6411

Branch: refs/heads/master
Commit: 22dd641155d48b38e41385d152392201b94c8842
Parents: a2fc818
Author: Zameer Manji <zm...@twopensource.com>
Authored: Tue Nov 25 10:33:21 2014 -0800
Committer: Bill Farner <wf...@apache.org>
Committed: Tue Nov 25 10:33:21 2014 -0800

----------------------------------------------------------------------
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/22dd6411/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 7b35ded..9a71d00 100644
--- a/build.gradle
+++ b/build.gradle
@@ -502,8 +502,8 @@ test.finalizedBy jacocoTestReport
 
 task analyzeReport(type: CoverageReportCheck) {
   coverageReportFile = "$reportPath/jacocoTestReport.xml"
-  minInstructionCoverage = 0.88
-  minBranchCoverage = 0.83
+  minInstructionCoverage = 0.89
+  minBranchCoverage = 0.84
   legacyClassesWithoutCoverage = file('config/legacy_untested_classes.txt').readLines()
 }
 jacocoTestReport.finalizedBy analyzeReport