Skip to content

Commit 0bf2087

Browse files
committed
Merge pull request #133 from RichardBradley/132-coverageMinimum
#132 clarify when reports are generated and when minimums are applied
2 parents 48a4b28 + 9cc584e commit 0bf2087

File tree

3 files changed

+27
-38
lines changed

3 files changed

+27
-38
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ Next, the keys have been renamed slightly. The new names begin with coverageXXX,
5757

5858
## Multi project reports
5959

60-
By default, scoverage will generate reports for each project seperately. You can merge them into an aggregated report by invoking `sbt coverageAggregate`. Note, you must do this after all the coverage data is complete as a separate command, so you cannot do `sbt coverage test coverageAggregate` (at least until a way around this is found).
60+
By default, scoverage will generate reports for each project seperately. You can merge them into an aggregated report by invoking `sbt coverageAggregate`.
61+
62+
(Note, you must do this after all the coverage data is complete as a separate command, so you cannot do `sbt coverage test coverageAggregate` (at least until a way around this is found).)
63+
64+
(You must have first run `sbt coverageReport` for `coverageAggregate` to work. It aggregates over the sub-projects' report xml rather than over the coverage data directly.)
6165

6266
## Exclude classes and packages
6367

@@ -92,6 +96,9 @@ coverageMinimum := 80
9296
coverageFailOnMinimum := true
9397
```
9498

99+
These settings will be enforced when the reports are generated.
100+
If you generate an aggregate report using `coverageAggregate` then these settings will apply to that report.
101+
95102
## Highlighting
96103

97104
If you are using Scala 2.11.1 or less, then highlighting will not work (due to this bug which was fixed in 2.11.2 https://github.com/scala/scala/pull/3799). In that case you must disable highlighting by adding the following to your build:

src/main/scala/scoverage/ScoverageSbtPlugin.scala

+17-36
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ object ScoverageSbtPlugin extends AutoPlugin {
2525
commands += Command.command("coverage", "enable compiled code with instrumentation", "")(toggleCoverage(true)),
2626
commands += Command.command("coverageOff", "disable compiled code with instrumentation", "")(toggleCoverage(false)),
2727
coverageReport <<= coverageReport0,
28-
testOptions in Test += postTestReport.value,
29-
testOptions in IntegrationTest += postTestReport.value,
3028
coverageAggregate <<= coverageAggregate0,
3129
libraryDependencies ++= Seq(
3230
OrgScoverage % (ScalacRuntimeArtifact + "_" + scalaBinaryVersion.value) % ScoverageVersion % "provided" intransitive(),
@@ -67,15 +65,19 @@ object ScoverageSbtPlugin extends AutoPlugin {
6765
Thread.sleep(1000) // have noticed some delay in writing on windows, hacky but works
6866

6967
loadCoverage(target, log) match {
70-
case Some(cov) => writeReports(target,
71-
(sourceDirectories in Compile).value,
72-
cov,
73-
coverageOutputCobertura.value,
74-
coverageOutputXML.value,
75-
coverageOutputHTML.value,
76-
coverageOutputDebug.value,
77-
coverageOutputTeamCity.value,
78-
log)
68+
case Some(cov) =>
69+
writeReports(
70+
target,
71+
(sourceDirectories in Compile).value,
72+
cov,
73+
coverageOutputCobertura.value,
74+
coverageOutputXML.value,
75+
coverageOutputHTML.value,
76+
coverageOutputDebug.value,
77+
coverageOutputTeamCity.value,
78+
log)
79+
80+
checkCoverage(cov, log, coverageMinimum.value, coverageFailOnMinimum.value)
7981
case None => log.warn("No coverage data, skipping reports")
8082
}
8183
}
@@ -87,7 +89,8 @@ object ScoverageSbtPlugin extends AutoPlugin {
8789
val xmlReportFiles = crossTarget.all(aggregateFilter).value map (_ / "scoverage-report" / Constants.XMLReportFilename) filter (_.isFile())
8890
CoverageAggregator.aggregate(xmlReportFiles, coverageCleanSubprojectFiles.value) match {
8991
case Some(cov) =>
90-
writeReports(crossTarget.value,
92+
writeReports(
93+
crossTarget.value,
9194
sourceDirectories.all(aggregateFilter).value.flatten,
9295
cov,
9396
coverageOutputCobertura.value,
@@ -98,6 +101,8 @@ object ScoverageSbtPlugin extends AutoPlugin {
98101
log)
99102
val cfmt = cov.statementCoverageFormatted
100103
log.info(s"Aggregation complete. Coverage was [$cfmt]")
104+
105+
checkCoverage(cov, log, coverageMinimum.value, coverageFailOnMinimum.value)
101106
case None =>
102107
log.info("No subproject data to aggregate, skipping reports")
103108
}
@@ -117,30 +122,6 @@ object ScoverageSbtPlugin extends AutoPlugin {
117122
}
118123
}
119124

120-
private lazy val postTestReport = Def.task {
121-
val log = streams.value.log
122-
val target = crossTarget.value
123-
Tests.Cleanup {
124-
() => if (coverageEnabled.value) {
125-
loadCoverage(target, log) foreach { c =>
126-
writeReports(
127-
target,
128-
(sourceDirectories in Compile).value,
129-
c,
130-
coverageOutputCobertura.value,
131-
coverageOutputXML.value,
132-
coverageOutputHTML.value,
133-
coverageOutputDebug.value,
134-
coverageOutputTeamCity.value,
135-
log
136-
)
137-
checkCoverage(c, log, coverageMinimum.value, coverageFailOnMinimum.value)
138-
}
139-
()
140-
}
141-
}
142-
}
143-
144125
private def scalaArgs(coverageEnabled: Boolean,
145126
pluginPath: File,
146127
target: File,
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# run scoverage
22
> clean
33
> coverage
4-
-> test
4+
> test
5+
-> coverageReport

0 commit comments

Comments
 (0)