X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-analyses%2Fpylint.sh;h=a4b38b0e675cc575c8eb73583a4130cbe50042b1;hb=b2f18af4604f35660d9162f65f87e8d59f35e8ea;hp=334cda525ffe9a0c143f43e49106d011d6e2bacc;hpb=ead62c96a4d0ecd27c8573eb7ca7e06b9f66e533;p=lttng-ci.git diff --git a/scripts/lttng-analyses/pylint.sh b/scripts/lttng-analyses/pylint.sh old mode 100644 new mode 100755 index 334cda5..a4b38b0 --- a/scripts/lttng-analyses/pylint.sh +++ b/scripts/lttng-analyses/pylint.sh @@ -1,6 +1,6 @@ -#!/bin/sh -exu +#!/bin/bash # -# Copyright (C) 2015 - Michael Jeanson +# Copyright (C) 2020 Michael Jeanson # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,29 +15,36 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +set -exu + +SRCDIR="src/lttng-analyses" + +PYTHON3="python3" +P3_VERSION=$($PYTHON3 -c 'import sys;v = sys.version.split()[0].split("."); print("{}.{}".format(v[0], v[1]))') BABELTRACE_DIR=$WORKSPACE/deps/babeltrace/build export LD_LIBRARY_PATH="$BABELTRACE_DIR/lib" -export PYTHONPATH="$BABELTRACE_DIR/python3.4/dist-packages/" +export PYTHONPATH="$BABELTRACE_DIR/lib/python${P3_VERSION}/site-packages/" PYENV_HOME=$WORKSPACE/.pyenv/ # Delete previously built virtualenv -if [ -d $PYENV_HOME ]; then - rm -rf $PYENV_HOME +if [ -d "$PYENV_HOME" ]; then + rm -rf "$PYENV_HOME" fi # Create virtualenv and install necessary packages -virtualenv --system-site-packages -p python3 $PYENV_HOME +virtualenv --system-site-packages -p $PYTHON3 "$PYENV_HOME" -set +u -. $PYENV_HOME/bin/activate -set -u +set +ux +# shellcheck disable=SC1090 +. "$PYENV_HOME/bin/activate" +set -ux pip install --quiet pylint -pip install --quiet pep8 -pep8 lttnganalyses | tee pep8.out -pylint -f parseable --ignore="_version.py" lttnganalyses | tee pylint.out +cd "$SRCDIR" + +pylint -f parseable --ignore="_version.py" --disable=C0111 lttnganalyses | tee "$WORKSPACE/pylint.out"