You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,11 @@ Next, the keys have been renamed slightly. The new names begin with coverageXXX,
57
57
58
58
## Multi project reports
59
59
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.)
61
65
62
66
## Exclude classes and packages
63
67
@@ -92,6 +96,9 @@ coverageMinimum := 80
92
96
coverageFailOnMinimum :=true
93
97
```
94
98
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
+
95
102
## Highlighting
96
103
97
104
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:
0 commit comments