You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/tools/coverage-report

17 lines
401 B

#!/bin/sh
COVERAGE_THRESHOLD=${COVERAGE_THRESHOLD:-0}
coverage run --source=./src /dev/null 2>/dev/null
mv .coverage .coverage.empty
coverage combine .coverage.*
coverage html --fail-under=${COVERAGE_THRESHOLD}
if [ $? -eq 2 ]; then
echo "Code coverage is less than ${COVERAGE_THRESHOLD}%"
exit 1
fi
RESULT=$(grep pc_cov htmlcov/index.html | egrep -o '[0-9]{1,3}%')
echo "COVERAGE: ${RESULT}"