diff options
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" |