ffb45b9ec98a699fb4f03c00d79fd031f8e11e0f
[lttng-ci.git] / scripts / babeltrace / pylint.sh
1 #!/bin/bash -exu
2 #
3 # Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4 # Copyright (C) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
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
19 set -o pipefail
20
21 PYTHON3=python3
22
23 SRCDIR="$WORKSPACE/src/babeltrace"
24 PYENV_HOME="$WORKSPACE/.pyenv/"
25
26 # Delete previously built virtualenv
27 if [ -d "$PYENV_HOME" ]; then
28 rm -rf "$PYENV_HOME"
29 fi
30
31 # Create virtualenv and install necessary packages
32 virtualenv --system-site-packages -p ${PYTHON3} "$PYENV_HOME"
33
34 set +ux
35 # shellcheck disable=SC1090
36 . "$PYENV_HOME/bin/activate"
37 set -ux
38
39 if [ -f "$SRCDIR/dev-requirements.txt" ]; then
40 pip install -r "$SRCDIR/dev-requirements.txt"
41 else
42 pip install --quiet black
43 pip install --quiet flake8
44 fi
45
46 exit_code=0
47
48 cd "$SRCDIR"
49
50 black --diff --check . | tee ../../black.out || exit_code=1
51 flake8 --output-file=../../flake8.out --tee || exit_code=1
52
53 exit $exit_code
This page took 0.033449 seconds and 3 git commands to generate.