Skip to content

Commit e413c2d

Browse files
author
MarcoFalke
committed
qa: Fix codespell error and have lint-spelling error instead of warn
1 parent fac9539 commit e413c2d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

test/functional/test_framework/test_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(self, i, datadir, *, rpchost, timewait, bitcoind, bitcoin_cli, mock
100100
def get_deterministic_priv_key(self):
101101
"""Return a deterministic priv key in base58, that only depends on the node's index"""
102102
PRIV_KEYS = [
103-
# adress , privkey
103+
# address , privkey
104104
('mjTkW3DjgyZck4KbiRusZsqTgaYTxdSz6z', 'cVpF924EspNh8KjYsfhgY96mmxvT6DgdWiTYMtMjuM74hJaU5psW'),
105105
('msX6jQXvxiNhx3Q62PKeLPrhrqZQdSimTg', 'cUxsWyKyZ9MAQTaAhUQWJmBbSvHMwSmuv59KgxQV7oZQU3PXN3KE'),
106106
('mnonCMyH9TmAsSj3M59DsbH8H63U3RKoFP', 'cTrh7dkEAeJd6b3MRX9bZK8eRmNqVCMH3LSUkE3dSFDyzjU38QxK'),

test/lint/lint-spelling.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99

1010
export LC_ALL=C
1111

12+
EXIT_CODE=0
1213
IGNORE_WORDS_FILE=test/lint/lint-spelling.ignore-words.txt
1314
if ! codespell --check-filenames --disable-colors --quiet-level=7 --ignore-words=${IGNORE_WORDS_FILE} $(git ls-files -- ":(exclude)build-aux/m4/" ":(exclude)contrib/seeds/*.txt" ":(exclude)depends/" ":(exclude)doc/release-notes/" ":(exclude)src/leveldb/" ":(exclude)src/qt/locale/" ":(exclude)src/secp256k1/" ":(exclude)src/univalue/"); then
1415
echo "^ Warning: codespell identified likely spelling errors. Any false positives? Add them to the list of ignored words in ${IGNORE_WORDS_FILE}"
16+
EXIT_CODE=1
1517
fi
18+
exit ${EXIT_CODE}

0 commit comments

Comments
 (0)