jjb: Use the https protocol for checkouts on Github, it's faster
[lttng-ci.git] / scripts / babeltrace / pylint.sh
CommitLineData
945874c0 1#!/bin/bash -exu
890bff23 2#
af11423c
MJ
3# Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4# Copyright (C) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
890bff23
MJ
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
945874c0
MJ
19set -o pipefail
20
96cf4d4d 21PYTHON3=python3
890bff23 22
be97a1e6 23SRCDIR="$WORKSPACE/src/babeltrace"
890bff23
MJ
24PYENV_HOME="$WORKSPACE/.pyenv/"
25
26# Delete previously built virtualenv
944a6c86
MJ
27if [ -d "$PYENV_HOME" ]; then
28 rm -rf "$PYENV_HOME"
890bff23
MJ
29fi
30
31# Create virtualenv and install necessary packages
944a6c86 32virtualenv --system-site-packages -p ${PYTHON3} "$PYENV_HOME"
453b388a 33
af11423c 34set +ux
be97a1e6 35# shellcheck disable=SC1090
944a6c86 36. "$PYENV_HOME/bin/activate"
af11423c
MJ
37set -ux
38
be97a1e6
MJ
39if [ -f "$SRCDIR/dev-requirements.txt" ]; then
40 pip install -r "$SRCDIR/dev-requirements.txt"
41else
42 pip install --quiet black
43 pip install --quiet flake8
44fi
af11423c
MJ
45
46exit_code=0
453b388a 47
be97a1e6 48cd "$SRCDIR"
890bff23 49
af11423c 50black --diff --check . | tee ../../black.out || exit_code=1
945874c0 51flake8 --output-file=../../flake8.out --tee || exit_code=1
890bff23 52
af11423c 53exit $exit_code
This page took 0.028073 seconds and 4 git commands to generate.