diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-04 14:31:10 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-04 14:31:10 +0200 |
commit | 985063c78564e9875df85daf3b106b41404240d2 (patch) | |
tree | d7dc43ee218c0f07ad8875d11142b2a499562847 /tests | |
parent | Remove lib (diff) | |
download | pyload-985063c78564e9875df85daf3b106b41404240d2.tar.xz |
Finish replace word "hook"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/code_analysis.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/code_analysis.sh b/tests/code_analysis.sh index c853652bf..c4dc8e99a 100644 --- a/tests/code_analysis.sh +++ b/tests/code_analysis.sh @@ -13,13 +13,3 @@ pep8 $PYLOAD > $REPORT && echo "Done. Report saved to $REPORT" echo "Running pylint ..." REPORT="pylint.txt" pylint --reports=no $PYLOAD > $REPORT && echo "Done. Report saved to $REPORT" - -#echo "Running pyflakes ..." -#REPORT="pyflakes.txt" -#{ - # pyflakes to pylint syntak -# find $PYLOAD -type f -name "*.py" | egrep -v '^\./lib' | xargs pyflakes > pyflakes.log || : - # Filter warnings and strip ./ from path -# cat pyflakes.log | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' | grep -i -E -v "'_'|pypath|webinterface|pyreq|addonmanager" > $REPORT -# sed -i 's/^.\///g' $REPORT -#} && echo "Done. Report saved to $REPORT" |