weblate/ci/lib
Michal Čihař 94d973e386 Report depreciation warnings when running tests
Signed-off-by: Michal Čihař <michal@cihar.com>
2017-12-03 19:56:27 +01:00

16 lines
218 B
Text
Vendored

# shell library to help executing tests
set -x
coverage erase
check() {
RET=$?
if [ $RET -ne 0 ] ; then
exit $RET
fi
}
run_coverage() {
python -Wd -m coverage run --source . --append "$@"
}