]> git.scottworley.com Git - pinch/commitdiff
Exclude subprocess-run-check
authorScott Worley <scottworley@scottworley.com>
Mon, 18 May 2020 23:09:06 +0000 (16:09 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 18 May 2020 23:09:06 +0000 (16:09 -0700)
We check status explicitly.

test.sh

diff --git a/test.sh b/test.sh
index edab8d8316467eb0397a9d5f5e7b6d67b9342457..3a3552316cfdbb932ad0c737232267ec46a331a6 100755 (executable)
--- a/test.sh
+++ b/test.sh
@@ -8,7 +8,7 @@ find . -name '*.py' -print0 | xargs -0 mypy --strict --ignore-missing-imports
 
 find . -name '*_test.py' -print0 | xargs -0 -r -n1 python3
 
-find . -name '*.py' -print0 | xargs -0 pylint --reports=n --persistent=n --ignore-imports=y -d fixme,invalid-name,missing-docstring,too-few-public-methods
+find . -name '*.py' -print0 | xargs -0 pylint --reports=n --persistent=n --ignore-imports=y -d fixme,invalid-name,missing-docstring,subprocess-run-check,too-few-public-methods
 
 formatting_needs_fixing=$(
   find . -name '*.py' -print0 |