Silence pylint
Silence pylint in specific places where we're doing slightly unusual or dodgy, but correct.
This commit is contained in:
parent
23e64f226b
commit
e915d532a6
4 changed files with 9 additions and 4 deletions
|
@ -268,7 +268,9 @@ def run_main():
|
||||||
)
|
)
|
||||||
return_code = abi_check.check_for_abi_changes()
|
return_code = abi_check.check_for_abi_changes()
|
||||||
sys.exit(return_code)
|
sys.exit(return_code)
|
||||||
except Exception:
|
except Exception: # pylint: disable=broad-except
|
||||||
|
# Print the backtrace and exit explicitly so as to exit with
|
||||||
|
# status 2, not 1.
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
|
|
|
@ -238,7 +238,7 @@ class FileWrapper(io.FileIO, object):
|
||||||
if hasattr(parent, '__next__'):
|
if hasattr(parent, '__next__'):
|
||||||
line = parent.__next__() # Python 3
|
line = parent.__next__() # Python 3
|
||||||
else:
|
else:
|
||||||
line = parent.next() # Python 2
|
line = parent.next() # Python 2 # pylint: disable=no-member
|
||||||
if line is not None:
|
if line is not None:
|
||||||
self._line_no += 1
|
self._line_no += 1
|
||||||
# Convert byte array to string with correct encoding and
|
# Convert byte array to string with correct encoding and
|
||||||
|
|
|
@ -37,7 +37,8 @@ https://github.com/ARMmbed/greentea
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
import binascii
|
import binascii
|
||||||
from mbed_host_tests import BaseHostTest, event_callback
|
|
||||||
|
from mbed_host_tests import BaseHostTest, event_callback # pylint: disable=import-error
|
||||||
|
|
||||||
|
|
||||||
class TestDataParserError(Exception):
|
class TestDataParserError(Exception):
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
Unit tests for generate_test_code.py
|
Unit tests for generate_test_code.py
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# pylint: disable=wrong-import-order
|
||||||
try:
|
try:
|
||||||
# Python 2
|
# Python 2
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
|
@ -36,6 +36,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# Python 3
|
# Python 3
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
# pylint: enable=wrong-import-order
|
||||||
from generate_test_code import gen_dependencies, gen_dependencies_one_line
|
from generate_test_code import gen_dependencies, gen_dependencies_one_line
|
||||||
from generate_test_code import gen_function_wrapper, gen_dispatch
|
from generate_test_code import gen_function_wrapper, gen_dispatch
|
||||||
from generate_test_code import parse_until_pattern, GeneratorInputError
|
from generate_test_code import parse_until_pattern, GeneratorInputError
|
||||||
|
@ -336,6 +337,7 @@ class StringIOWrapper(StringIO, object):
|
||||||
:param length:
|
:param length:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=unused-argument
|
||||||
line = super(StringIOWrapper, self).readline()
|
line = super(StringIOWrapper, self).readline()
|
||||||
if line is not None:
|
if line is not None:
|
||||||
self.line_no += 1
|
self.line_no += 1
|
||||||
|
|
Loading…
Reference in a new issue