addons-server/scripts/pylint.sh

7 строки
216 B
Bash
Исходник Обычный вид История

2010-01-15 21:46:00 +03:00
#!/bin/bash
2010-01-08 22:51:36 +03:00
VENV=$WORKSPACE/venv
source $VENV/bin/activate
2010-01-15 21:46:00 +03:00
export PYTHONPATH="$WORKSPACE/..:$WORKSPACE/apps:$WORKSPACE/lib"
pylint --rcfile scripts/pylintrc $WORKSPACE 2>/dev/null > pylint.txt
2010-01-08 22:39:59 +03:00
echo "pylint complete"