Exclude test-settings.py from check-all

(imported from commit d12d38b85846fa5ea42f123dd81674ae85e92667)
This commit is contained in:
Keegan McAllister 2012-10-04 16:50:27 -04:00
parent 70482d032d
commit 3e57097ccc
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,10 @@ fi
cd "$SCRIPT_DIR"/..;
if find . -name confirmation -prune -o -name '*.py' -print0 \
if find . \
-path ./confirmation -prune \
-o -path ./humbug/test-settings.py -prune \
-o -name '*.py' -print0 \
| xargs -0 pyflakes \
| grep -v 'imported but unused'; then