tests: Add information on how to add Vulture suppressions
This commit is contained in:
parent
7d4bc60f1f
commit
72a18a73af
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue