mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-26 00:45:17 +08:00
16 lines
204 B
Text
Vendored
16 lines
204 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() {
|
|
coverage run --source . --append "$@"
|
|
}
|
|
|