未验证 提交 efc77880 编写于 作者: C Cleber Rosa

Merge remote-tracking branch 'cacarrara/enable-pylint-w0603'

Signed-off-by: NCleber Rosa <crosa@redhat.com>
......@@ -209,7 +209,7 @@ def get_default():
:returns: an avocado.core.restclient.connection.Connection instance
"""
global CONNECTION
global CONNECTION # pylint: disable=W0603
if CONNECTION is None:
CONNECTION = Connection()
......
......@@ -46,7 +46,7 @@ def log_line(filename, line):
the dir set by set_log_file_dir().
:param line: Line to write.
"""
global _open_log_files, _log_file_dir
global _open_log_files, _log_file_dir # pylint: disable=W0603
path = utils_path.get_path(_log_file_dir, filename)
if path not in _open_log_files:
......@@ -69,12 +69,12 @@ def set_log_file_dir(directory):
:param dir: Directory for log files.
"""
global _log_file_dir
global _log_file_dir # pylint: disable=W0603
_log_file_dir = directory
def close_log_file(filename):
global _open_log_files, _log_file_dir
global _open_log_files, _log_file_dir # pylint: disable=W0603
remove = []
for k in _open_log_files:
if os.path.basename(k) == filename:
......
......@@ -1169,7 +1169,7 @@ def should_run_inside_wrapper(cmd):
:param cmd: the command arguments, from where we extract the binary name
"""
global CURRENT_WRAPPER
global CURRENT_WRAPPER # pylint: disable=W0603
CURRENT_WRAPPER = None
args = cmd_split(cmd)
cmd_binary_name = args[0]
......
......@@ -169,7 +169,7 @@ results_dir_content() {
[ "$SKIP_RESULTSDIR_CHECK" ] || RESULTS_DIR_CONTENT="$(ls $RESULTS_DIR 2> /dev/null)"
LINT_CMD="inspekt lint --exclude=.git"
PYLINT_ENABLE="--enable R0401,W0101,W0102,W0104,W0105,W0106,W0107,W0108,W0109,W0111,W0120,W0122,W0123,W0124,W0125,W0150,W0199,W0211,W0222,W0232,W0233,W0301,W0312,W0401,W0404,W0406,W0410,W0601,W0602,W0604,W0611,W0612,W0614,W0622,W0623,W0640,W0711,W1202,W1300,W1301,W1302,W1303,W1304,W1305,W1306,W1307,W1401,W1402,W1501,W1645"
PYLINT_ENABLE="--enable R0401,W0101,W0102,W0104,W0105,W0106,W0107,W0108,W0109,W0111,W0120,W0122,W0123,W0124,W0125,W0150,W0199,W0211,W0222,W0232,W0233,W0301,W0312,W0401,W0404,W0406,W0410,W0601,W0602,W0603,W0604,W0611,W0612,W0614,W0622,W0623,W0640,W0711,W1202,W1300,W1301,W1302,W1303,W1304,W1305,W1306,W1307,W1401,W1402,W1501,W1645"
if [ "$AVOCADO_PARALLEL_LINT" ]; then
LINT_CMD="$LINT_CMD --parallel=$AVOCADO_PARALLEL_LINT"
fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册