mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-15 02:41:28 +00:00
Repair pylint test case
The --include-ids parameter was dropped from pylint and thus the command failed as was skipped. Repair the pylint check and add support for Python 3.
This commit is contained in:
parent
6ee0915d3f
commit
ba16daf56f
1
debian/control
vendored
1
debian/control
vendored
@ -12,6 +12,7 @@ Build-Depends: dctrl-tools,
|
|||||||
libwww-perl,
|
libwww-perl,
|
||||||
lsb-release,
|
lsb-release,
|
||||||
pylint,
|
pylint,
|
||||||
|
pylint3,
|
||||||
python-all (>= 2.6.5-13~),
|
python-all (>= 2.6.5-13~),
|
||||||
python-apt (>= 0.7.93~),
|
python-apt (>= 0.7.93~),
|
||||||
python-debian (>= 0.1.20~),
|
python-debian (>= 0.1.20~),
|
||||||
|
@ -10,7 +10,7 @@ ignored-classes=Launchpad,BaseWrapper,PersonTeam,Distribution,Consumer,Credentia
|
|||||||
# Maximum number of characters on a single line.
|
# Maximum number of characters on a single line.
|
||||||
max-line-length=80
|
max-line-length=80
|
||||||
|
|
||||||
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
|
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
|
||||||
# tab).
|
# tab).
|
||||||
indent-string=' '
|
indent-string=' '
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# test_pylint.py - Run pylint in errors-only mode.
|
# test_pylint.py - Run pylint in errors-only mode.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
# Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
||||||
|
# Copyright (C) 2017, Benjamin Drung <bdrung@ubuntu.com>
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, and/or distribute this software for any
|
# Permission to use, copy, modify, and/or distribute this software for any
|
||||||
# purpose with or without fee is hereby granted, provided that the above
|
# purpose with or without fee is hereby granted, provided that the above
|
||||||
@ -14,56 +15,34 @@
|
|||||||
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
import re
|
import sys
|
||||||
|
|
||||||
import setup
|
import setup
|
||||||
from ubuntutools.test import unittest
|
from ubuntutools.test import unittest
|
||||||
from ubuntutools import subprocess
|
from ubuntutools import subprocess
|
||||||
|
|
||||||
WHITELIST = [re.compile(': %s$' % x) for x in (
|
|
||||||
# Wildcard import:
|
|
||||||
r"No name '\w+Error' in module 'launchpadlib\.errors'",
|
|
||||||
# http://www.logilab.org/ticket/51250:
|
|
||||||
r"Module 'hashlib' has no '(md5|sha(1|224|256|384|512))' member",
|
|
||||||
# pylint doesn't like *args/**kwargs
|
|
||||||
r"Instance of 'Popen' has no '.*' member",
|
|
||||||
)]
|
|
||||||
|
|
||||||
class PylintTestCase(unittest.TestCase):
|
class PylintTestCase(unittest.TestCase):
|
||||||
def test_pylint(self):
|
def test_pylint(self):
|
||||||
"Test: Run pylint on Python source code"
|
"Test: Run pylint on Python source code"
|
||||||
files = ['ubuntutools']
|
files = ['ubuntutools']
|
||||||
for script in setup.scripts:
|
for script in setup.scripts:
|
||||||
f = open(script, 'r')
|
with open(script, 'r') as script_file:
|
||||||
if 'python' in f.readline():
|
shebang = script_file.readline()
|
||||||
|
if ((sys.version_info[0] == 3 and 'python3' in shebang) or
|
||||||
|
('python' in shebang and 'python3' not in shebang)):
|
||||||
files.append(script)
|
files.append(script)
|
||||||
f.close()
|
|
||||||
cmd = ['pylint', '--rcfile=ubuntutools/test/pylint.conf', '-E',
|
if sys.version_info[0] == 3:
|
||||||
'--include-ids=y', '--'] + files
|
pylint_binary = 'pylint3'
|
||||||
|
else:
|
||||||
|
pylint_binary = 'pylint'
|
||||||
|
cmd = [pylint_binary, '--rcfile=ubuntutools/test/pylint.conf', '-E',
|
||||||
|
'--reports=n', '--'] + files
|
||||||
|
sys.stderr.write("Running following command:\n{}\n".format(" ".join(cmd)))
|
||||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE, close_fds=True)
|
stderr=subprocess.PIPE, close_fds=True)
|
||||||
|
|
||||||
out, err = process.communicate()
|
out, err = process.communicate()
|
||||||
if err != '':
|
self.assertFalse(err, pylint_binary + ' crashed. Error output:\n' + err.decode())
|
||||||
raise unittest.SkipTest('pylint crashed :/')
|
self.assertFalse(out, pylint_binary + " found issues:\n" + out.decode())
|
||||||
|
|
||||||
filtered_out = []
|
|
||||||
detected_in = ''
|
|
||||||
# pylint bug: http://www.logilab.org/ticket/46273
|
|
||||||
# pylint: disable=E1103
|
|
||||||
for line in out.splitlines():
|
|
||||||
# pylint: enable=E1103
|
|
||||||
if line.startswith('************* '):
|
|
||||||
detected_in = line
|
|
||||||
continue
|
|
||||||
|
|
||||||
for reg_exp in WHITELIST:
|
|
||||||
if reg_exp.search(line):
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
filtered_out.append(detected_in)
|
|
||||||
filtered_out.append(line)
|
|
||||||
|
|
||||||
self.assertEqual(filtered_out, [],
|
|
||||||
"pylint found errors.\n"
|
|
||||||
"Filtered Output:\n" + '\n'.join(filtered_out))
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user