Skip to content
Snippets Groups Projects
Commit a7182f7f authored by Nathaniel Manista's avatar Nathaniel Manista
Browse files

Always use an upgraded pip when running pylint

parent 936f8d5e
No related branches found
No related tags found
No related merge requests found
...@@ -19,15 +19,16 @@ set -ex ...@@ -19,15 +19,16 @@ set -ex
cd "$(dirname "$0")/../.." cd "$(dirname "$0")/../.."
DIRS=( DIRS=(
'src/python/grpcio/grpc' 'src/python/grpcio/grpc'
'src/python/grpcio_reflection/grpc_reflection' 'src/python/grpcio_health_checking/grpc_health'
'src/python/grpcio_health_checking/grpc_health' 'src/python/grpcio_reflection/grpc_reflection'
) )
VIRTUALENV=python_pylint_venv VIRTUALENV=python_pylint_venv
virtualenv $VIRTUALENV virtualenv $VIRTUALENV
PYTHON=$(realpath $VIRTUALENV/bin/python) PYTHON=$(realpath $VIRTUALENV/bin/python)
$PYTHON -m pip install --upgrade pip
$PYTHON -m pip install pylint==1.6.5 $PYTHON -m pip install pylint==1.6.5
for dir in "${DIRS[@]}"; do for dir in "${DIRS[@]}"; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment