X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/26125a281f6733d08ffb488668b052ee9c20061a..a2290fb189bee1da5e985d785e044d1681401ff7:/test.sh diff --git a/test.sh b/test.sh index 9823458..9485418 100755 --- a/test.sh +++ b/test.sh @@ -7,7 +7,9 @@ PARALLELISM=4 find . -name '*.py' -print0 | xargs -0 mypy --strict --ignore-missing-imports for test in tests/*;do - "$test" + if [ ! -d "$test" ];then + "$test" + fi done find . -name '*_test.py' -print0 | xargs -0 -r -n1 python3