mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 20:11:20 +00:00
23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
EXCLUDE=wlauto/external/,wlauto/tests
|
||
|
EXCLUDE_COMMA=wlauto/core/bootstrap.py,wlauto/workloads/geekbench/__init__.py
|
||
|
IGNORE=E501,E265,E266,W391
|
||
|
|
||
|
if ! hash pep8 2>/dev/null; then
|
||
|
echo "pep8 not found in PATH"
|
||
|
echo "you can install it with \"sudo pip install pep8\""
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [[ "$1" == "" ]]; then
|
||
|
THIS_DIR="`dirname \"$0\"`"
|
||
|
pushd $THIS_DIR/.. > /dev/null
|
||
|
pep8 --exclude=$EXCLUDE,$EXCLUDE_COMMA --ignore=$IGNORE wlauto
|
||
|
pep8 --exclude=$EXCLUDE --ignore=$IGNORE,E241 $(echo "$EXCLUDE_COMMA" | sed 's/,/ /g')
|
||
|
popd > /dev/null
|
||
|
else
|
||
|
pep8 --exclude=$EXCLUDE,$EXCLUDE_COMMA --ignore=$IGNORE $1
|
||
|
fi
|
||
|
|