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/12/03 20:35:19 UTC

incubator-aurora git commit: Reduce minimum branch coverage requirement to avoid flakiness.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 4405031aa -> 9b1e9fbb4


Reduce minimum branch coverage requirement to avoid flakiness.

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


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

Branch: refs/heads/master
Commit: 9b1e9fbb4366dca10a2d5e326c1ae07073b1ef9d
Parents: 4405031
Author: Bill Farner <wf...@apache.org>
Authored: Wed Dec 3 11:34:40 2014 -0800
Committer: Bill Farner <wf...@apache.org>
Committed: Wed Dec 3 11:34:40 2014 -0800

----------------------------------------------------------------------
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/9b1e9fbb/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index fb729c5..2699db8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -427,7 +427,7 @@ test.finalizedBy jacocoTestReport
 task analyzeReport(type: CoverageReportCheck) {
   coverageReportFile = "$reportPath/jacocoTestReport.xml"
   minInstructionCoverage = 0.89
-  minBranchCoverage = 0.84
+  minBranchCoverage = 0.835
   legacyClassesWithoutCoverage = file('config/legacy_untested_classes.txt').readLines()
 }
 jacocoTestReport.finalizedBy analyzeReport