mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Re-add dead code detection
This commit is contained in:
parent
6c6140846f
commit
3f8776a139
2 changed files with 24 additions and 0 deletions
|
@ -15,6 +15,7 @@ ${CI_RETRY_EXE} pip3 install codespell==2.0.0
|
||||||
${CI_RETRY_EXE} pip3 install flake8==3.8.3
|
${CI_RETRY_EXE} pip3 install flake8==3.8.3
|
||||||
${CI_RETRY_EXE} pip3 install yq
|
${CI_RETRY_EXE} pip3 install yq
|
||||||
${CI_RETRY_EXE} pip3 install mypy==0.781
|
${CI_RETRY_EXE} pip3 install mypy==0.781
|
||||||
|
${CI_RETRY_EXE} pip3 install vulture==2.3
|
||||||
|
|
||||||
SHELLCHECK_VERSION=v0.7.1
|
SHELLCHECK_VERSION=v0.7.1
|
||||||
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
|
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
|
||||||
|
|
23
test/lint/lint-python-dead-code.sh
Executable file
23
test/lint/lint-python-dead-code.sh
Executable file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (c) 2021 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
#
|
||||||
|
# Find dead Python code.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
|
if ! command -v vulture > /dev/null; then
|
||||||
|
echo "Skipping Python dead code linting since vulture is not installed. Install by running \"pip3 install vulture\""
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# --min-confidence 100 will only report code that is guaranteed to be unused within the analyzed files.
|
||||||
|
# Any value below 100 introduces the risk of false positives, which would create an unacceptable maintenance burden.
|
||||||
|
if ! vulture \
|
||||||
|
--min-confidence 100 \
|
||||||
|
$(git ls-files -- "*.py"); then
|
||||||
|
echo "Python dead code detection found some issues"
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Add table
Reference in a new issue