tests: Add information on how to add Vulture suppressions

This commit is contained in:
practicalswift 2019-09-19 21:13:26 +00:00
parent 7d4bc60f1f
commit 72a18a73af

View file

@ -13,7 +13,11 @@ if ! command -v vulture > /dev/null; then
exit 0
fi
vulture \
VULTURE_SUPPRESSIONS=$(dirname "${BASH_SOURCE[0]}")/lint-python-dead-code-whitelist
if ! vulture \
--min-confidence 60 \
$(git rev-parse --show-toplevel) \
$(dirname "${BASH_SOURCE[0]}")/lint-python-dead-code-whitelist
"${VULTURE_SUPPRESSIONS}"; then
echo "False positives? Suppressions can be added to ${VULTURE_SUPPRESSIONS}"
exit 1
fi