Add Coverage Report for Java and Python (#2667)

* Add coverage report for java

* Add coverage report for python

* Increase memory for JVM unit tests

* Increase memory for JVM unit tests
This commit is contained in:
Yun Ni
2017-09-05 14:46:51 -07:00
committed by Nan Zhu
parent 2e9d06443e
commit f04bde05fd
3 changed files with 26 additions and 3 deletions

View File

@@ -215,6 +215,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>