File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ buildscript {
14
14
mavenCentral()
15
15
}
16
16
dependencies {
17
- classpath 'org.scoverage:gradle-scoverage:1.0.7 '
17
+ classpath 'org.scoverage:gradle-scoverage:1.0.8 '
18
18
}
19
19
}
20
20
@@ -34,6 +34,20 @@ This creates an additional task testCoverage which will run tests against instru
34
34
Then launch command :
35
35
` gradle testScoverage ` or ` gradle checkScoverage `
36
36
37
+ Aggregating Reports
38
+ -------------------
39
+
40
+ There is now experimental support for aggregating coverage statistics across subprojects.
41
+
42
+ The project hosting the aggregation task ** must** be configured as the sub-projects are;
43
+ i.e. with the scoverage plugin applied and the scoverage dependencies configured.
44
+
45
+ ``` groovy
46
+ task aggregateScoverage(type: org.scoverage.ScoverageAggregate)
47
+ ```
48
+
49
+ This will produce a report into _ build_ / scoverage-aggregate
50
+
37
51
Available tasks
38
52
---------
39
53
* testScoverage - Executes all tests and creates Scoverage XML report with information about code coverage
You can’t perform that action at this time.
0 commit comments