We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 301788b commit 07325fbCopy full SHA for 07325fb
2 files changed
.travis.yml
@@ -10,7 +10,9 @@ cache:
10
- $HOME/.gradle/caches/
11
- $HOME/.gradle/wrapper/
12
script:
13
- - "./gradlew clean check --continue"
+ - "./gradlew clean check jacocoTestReport --continue"
14
+after_success:
15
+ - bash <(curl -s https://codecov.io/bash)
16
branches:
17
only:
18
- v3
lib/build.gradle
@@ -1,3 +1,4 @@
1
+apply plugin: 'jacoco'
2
apply plugin: 'java'
3
4
compileJava {
@@ -13,3 +14,9 @@ dependencies {
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'org.mockito:mockito-core:2.2.8'
}
+
+jacocoTestReport {
19
+ reports {
20
+ html.enabled true
21
+ }
22
+}
0 commit comments