1ef50b559a
This script just calls code checkers pep8 and pylint. Signed-off-by: Claudius Heine <ch@denx.de>
12 lines
192 B
Bash
Executable File
12 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ERROR=0
|
|
|
|
echo "Checking with pep8"
|
|
pep8 $1/*.py $1/*/*.py || ERROR=$(expr $ERROR + 1)
|
|
|
|
echo "Checking with pylint"
|
|
pylint $1/*.py $1/*/*.py || ERROR=$(expr $ERROR + 2)
|
|
|
|
exit $ERROR
|