From 7fcc18a2db40653e0d782528674ca1740e70830c Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 18 May 2020 16:09:06 -0700 Subject: [PATCH] Exclude subprocess-run-check We check status explicitly. --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index edab8d8..3a35523 100755 --- 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 | -- 2.44.1