commit d2288f0c5fb87eb8e6709060c3d3c5e48af66a38
parent db7496eae76f272eff58461d1e1865fa8e4b5922
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 27 Nov 2019 19:09:33 +0100
Generate LCOV report even if _part_ of tests passed.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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