summaryrefslogtreecommitdiff
path: root/buildbot/coverage.sh
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 19:09:33 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-11-27 19:09:33 +0100
commitd2288f0c5fb87eb8e6709060c3d3c5e48af66a38 (patch)
tree720204db5d210b86440ad775e3b01eaa9e2f6958 /buildbot/coverage.sh
parentdb7496eae76f272eff58461d1e1865fa8e4b5922 (diff)
downloaddeployment-d2288f0c5fb87eb8e6709060c3d3c5e48af66a38.tar.gz
deployment-d2288f0c5fb87eb8e6709060c3d3c5e48af66a38.tar.bz2
deployment-d2288f0c5fb87eb8e6709060c3d3c5e48af66a38.zip
Generate LCOV report even if _part_ of tests passed.
Diffstat (limited to 'buildbot/coverage.sh')
-rwxr-xr-xbuildbot/coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildbot/coverage.sh b/buildbot/coverage.sh
index 48f5bc3..eb2085d 100755
--- a/buildbot/coverage.sh
+++ b/buildbot/coverage.sh
@@ -21,7 +21,7 @@ for codebase in merchant exchange ; do
TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB \
TALER_AUDITORDB_POSTGRES_CONFIG=$TALER_CHECKDB \
cd $TOP
- make check || exit 1
+ make check || true
mkdir -p $REPORT_DIR
lcov -d $TOP -c --no-external -o $REPORT_DIR/coverage.info
lcov -r $REPORT_DIR/coverage.info **/test_* -o $REPORT_DIR/rcoverage.info