Skip to content

Commit

Permalink
Merge pull request #258 from alexnikitchuk/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ckipp01 authored May 7, 2021
2 parents 17e2575 + c43b43a commit 464cb01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ object ScoverageSbtPlugin extends AutoPlugin {
statsKeyValue("CodeCoverageAbsSCovered", coverage.invokedStatementCount)
)
log.info(statsKeyValue("CodeCoverageAbsSTotal", coverage.statementCount))
log.info(
statsKeyValue("CodeCoverageAbsRCovered", coverage.invokedBranchesCount)
)
log.info(statsKeyValue("CodeCoverageAbsRTotal", coverage.branchCount))

// Log branch coverage as a custom metrics (in percent)
log.info(
Expand Down

0 comments on commit 464cb01

Please sign in to comment.