summaryrefslogtreecommitdiffhomepage
path: root/pylint.sh
blob: 7d03a76781e3e00a5a5b0ac3dae0f3a5d4fdb922 (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh

echo "Running pylint ..."
PYLINT_OPTIONS="--rcfile=pylintrc --output-format=parseable"
PYLINT_INCLUDE="ryu bin/ryu-manager bin/ryu-client"
export PYTHONPATH=$PYTHONPATH:.ryu
PYLINT_LOG=pylint.log

pylint $PYLINT_OPTIONS $PYLINT_INCLUDE > $PYLINT_LOG