You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/06/22 16:37:33 UTC

[geode-native] branch develop updated: Adds lcov tools for code coverage reporting.

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7e29896  Adds lcov tools for code coverage reporting.
7e29896 is described below

commit 7e298967f1910f83cf1ab209fae97a569f5ca960
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Fri Jun 22 09:37:24 2018 -0700

    Adds lcov tools for code coverage reporting.
---
 .lcovrc                               | 1 +
 packer/rhel/install-coverage-tools.sh | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/.lcovrc b/.lcovrc
new file mode 100644
index 0000000..4cebb4b
--- /dev/null
+++ b/.lcovrc
@@ -0,0 +1 @@
+lcov_branch_coverage=1
diff --git a/packer/rhel/install-coverage-tools.sh b/packer/rhel/install-coverage-tools.sh
index d827ded..b696e33 100644
--- a/packer/rhel/install-coverage-tools.sh
+++ b/packer/rhel/install-coverage-tools.sh
@@ -17,4 +17,8 @@
 
 set -x -e -o pipefail
 
+# for coveralls.io
 scl enable python27 'pip install cpp-coveralls'
+
+# For codecov.ip
+yum install -y lcov
\ No newline at end of file