diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2023-10-10 11:34:31 +0200 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2023-10-13 14:06:06 +0200 |
commit | 348e79f7c6030c9bcbec6bd25e246a779081152a (patch) | |
tree | 393a1889c3f28ebac6bddded7345f967dfd91b51 /test | |
parent | 73dfa6da0801e3116e7e84cd5e089b98a9f70212 (diff) |
lint: Include test_utxo_snapshots in lint_shell
Diffstat (limited to 'test')
-rwxr-xr-x | test/lint/lint-shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/lint-shell.py b/test/lint/lint-shell.py index db84ca3d39..7fb78894af 100755 --- a/test/lint/lint-shell.py +++ b/test/lint/lint-shell.py @@ -70,7 +70,7 @@ def main(): reg = re.compile(r'src/[leveldb,secp256k1,minisketch]') def should_exclude(fname: str) -> bool: - return bool(reg.match(fname)) or 'test_utxo_snapshots.sh' in fname + return bool(reg.match(fname)) # remove everything that doesn't match this regex files[:] = [file for file in files if not should_exclude(file)] |