Problem: coverage CI job does not print test errors

Solution: run make check with VERBOSE=1
This commit is contained in:
Luca Boccassi
2017-08-17 17:20:56 +01:00
parent 2d2b51579b
commit 9ac244a67c

View File

@@ -29,4 +29,4 @@ fi
pip install --user cpp-coveralls
# Build, check, and install from local source
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make -j5 check && coveralls --exclude tests --build-root . --gcov-options '\-lp') || exit 1
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check && coveralls --exclude tests --build-root . --gcov-options '\-lp') || exit 1