From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 9B82A4765E1 for ; Tue, 22 Dec 2020 17:54:56 +0300 (MSK) From: sergeyb@tarantool.org Date: Tue, 22 Dec 2020 17:54:21 +0300 Message-Id: <1f95a71d17e825056700a64d037756e4fcd02a2d.1608647958.git.estetus@gmail.com> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v7 2/3] luacheck: fix warnings in test/box-py List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org, lvasiliev@tarantool.org From: Sergey Bronnikov Closes #5456 Reviewed-by: Vladislav Shpilevoy Reviewed-by: Igor Munkin Co-authored-by: Vladislav Shpilevoy Co-authored-by: Igor Munkin --- .luacheckrc | 1 - test/box-py/box.lua | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 17cff8671..52625bb35 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -39,7 +39,6 @@ exclude_files = { "test/box/lua/require_mod.lua", -- Unused source file, to be dropped (gh-5169). "test/box/lua/test_init.lua", - "test/box-py/**/*.lua", "test/box-tap/**/*.lua", "test/engine/**/*.lua", "test/engine_long/**/*.lua", diff --git a/test/box-py/box.lua b/test/box-py/box.lua index e9403774c..35a087de9 100644 --- a/test/box-py/box.lua +++ b/test/box-py/box.lua @@ -1,5 +1,5 @@ #!/usr/bin/env tarantool -os = require('os') +local os = require('os') box.cfg{ listen = os.getenv("LISTEN"), -- 2.25.1