Skip to content

Commit 3195b6f

Browse files
Change Pylint to Pylint3
1 parent 2bdcf53 commit 3195b6f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

python/bindir/cloud-grab-dependent-library-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import subprocess
2020

2121
depLibraries = ['bzip2', 'gzip', 'unzip', 'openssh-clients', 'nfs-utils', 'wget', 'ws-commons-util', 'commons-dbcp',
22-
'commons-collections', 'commons-httpclient', 'jpackage-utils', 'mysql-connector-python3', 'python3', 'python-paramiko', 'ipmitool', 'commons-httpclient', 'commons-collections',
22+
'commons-collections', 'commons-httpclient', 'jpackage-utils', 'mysql-connector-python3', 'python-paramiko', 'ipmitool', 'commons-httpclient', 'commons-collections',
2323
'commons-pool', 'commons-dbcp', 'jakarta-commons-logging', 'java-*-openjdk']
2424

2525
def runCmd(cmds):

systemvm/test/runtests.sh

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ then
3131
fi
3232

3333
echo "Running pylint to check systemvm/python code for errors"
34-
pylint --disable=R,C,W *.py
35-
pylint --disable=R,C,W `find ../debian -name \*.py`
34+
pylint3 --disable=R,C,W *.py
35+
pylint3 --disable=R,C,W `find ../debian -name \*.py`
3636
if [ $? -gt 0 ]
3737
then
3838
echo "Pylint failed, please check your code"

tools/travis/before_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if [[ $? -ne 0 ]]; then
8181
echo -e "\napt-get packages failed to install"
8282
fi
8383

84-
sudo apt-get -q -y -V install freeipmi-common libfreeipmi16 libgcrypt20 libgpg-error-dev libgpg-error0 libopenipmi0 ipmitool libpython-dev libssl-dev libffi-dev python-openssl build-essential --no-install-recommends > /dev/null
84+
sudo apt-get -q -y -V install freeipmi-common libfreeipmi16 libgcrypt20 libgpg-error-dev libgpg-error0 libopenipmi0 ipmitool libpython-dev libssl-dev libffi-dev pylint3 python-openssl build-essential --no-install-recommends > /dev/null
8585

8686
echo -e "\nIPMI version"
8787
ipmitool -V

0 commit comments

Comments
 (0)