mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
19 lines
384 B
Bash
19 lines
384 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
which pyflakes > /dev/null
|
||
|
if test $? != 0; then
|
||
|
echo "$0 requires pyflakes (sudo apt-get install pyflakes)"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
d=$(dirname $0)
|
||
|
for f in $(find ${d}/teuthology | grep py$); do
|
||
|
if test -n "${V}"; then
|
||
|
echo "checking ${f}"
|
||
|
fi
|
||
|
pyflakes ${f} > >( \
|
||
|
grep -v "'Lock' imported but unused" | \
|
||
|
grep -v "'MachineLock' imported but unused" \
|
||
|
)
|
||
|
done
|