Files
linux-configs/jenkins/pylint.sh

4 lines
236 B
Bash
Raw Normal View History

2013-08-13 14:52:32 -04:00
rm -f pylint.log
for f in `find . -name '*.py'|egrep -v '^./tests/|^./build/'`; do
pylint --output-format=parseable --disable=W0311,W0403,W0232,E1101 --generated-members=objects,content,status_code --reports=y $f >> pylint.log
done || :