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"
|
2010-04-15 19:44:53 +04:00
|
|
|
pylint --rcfile scripts/pylintrc $WORKSPACE 2>/dev/null > pylint.txt
|
2010-01-08 22:39:59 +03:00
|
|
|
echo "pylint complete"
|