File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,14 @@ buildscript {
15
15
maven { url "https://oss.sonatype.org/content/groups/public" }
16
16
}
17
17
dependencies {
18
- classpath 'org.scoverage:gradle-scoverage:0.4.1 -SNAPSHOT'
18
+ classpath 'org.scoverage:gradle-scoverage:0.6 -SNAPSHOT'
19
19
}
20
20
}
21
21
22
22
apply plugin: org.scoverage.ScoveragePlugin
23
23
24
24
dependencies {
25
25
scoverage 'org.scoverage:scalac-scoverage-plugin_2.11:0.99.5'
26
- compile 'org.scala-lang:scala-library:2.11.0'
27
26
}
28
27
```
29
28
@@ -36,6 +35,12 @@ This creates an additional task testCoverage which will run tests against instru
36
35
Then launch command :
37
36
` gradle testScoverage ` or ` gradle checkScoverage `
38
37
38
+ Available tasks
39
+ ---------
40
+ * testCoverage - Executes all tests and creates Scoverage XML report with information about code coverage
41
+ * reportScoverage - Generates HTML report.
42
+ * checkScoverage - See below.
43
+ * compileScoverageScala - Instruments code without running tests.
39
44
40
45
CheckScoverage
41
46
---------
You can’t perform that action at this time.
0 commit comments