Fix skip file checking

This commit is contained in:
Dylan Whichard 2018-05-14 14:14:16 -04:00
parent a7dccb18eb
commit 5468cb8237

View file

@ -1,5 +1,11 @@
#!/bin/bash #!/bin/bash
set -x function find_pyfiles() {
for f in $(find . -type f -iname '*.py'); do
if [ ! -e "$(dirname $f)/.circuitpython.skip" ]; then
echo "$f"
fi
done
}
find . -type d '!' -exec test -e "{}/.circuitpython.skip" ';' | xargs pylint find_pyfiles | xargs pylint