From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp39.i.mail.ru (smtp39.i.mail.ru [94.100.177.99]) (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 179444696F5 for ; Fri, 29 May 2020 18:13:13 +0300 (MSK) From: sergeyb@tarantool.org Date: Fri, 29 May 2020 18:09:06 +0300 Message-Id: <2028c28e3ad4b1645fa04218286dd8f13e712c0b.1590764167.git.sergeyb@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v6 07/25] Supress luacheck warnings in test/app 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, imun@tarantool.org Cc: o.piskunov@tarantool.org, alexander.turenko@tarantool.org From: Sergey Bronnikov Part of #4681 Reviewed-by: Vladislav Shpilevoy Reviewed-by: Igor Munkin --- .luacheckrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.luacheckrc b/.luacheckrc index 03a51ba3e..78bb54adb 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -6,7 +6,7 @@ include_files = { exclude_files = { "build/**/*.lua", "src/box/lua/serpent.lua", -- third-party source code - "test/app/*.lua", + "test/app/*.test.lua", "test/app-tap/lua/serializer_test.lua", "test/box/**/*.lua", "test/engine/*.lua", @@ -39,3 +39,4 @@ files["src/lua/swim.lua"] = {ignore = {"431"}} files["src/box/lua/console.lua"] = {globals = {"help"}, ignore = {"212"}} files["src/box/lua/net_box.lua"] = {globals = {"bit"}, ignore = {"431", "432"}} files["src/box/lua/schema.lua"] = {globals = {"tonumber64"}, ignore = {"431", "432"}} +files["test/app/lua/fiber.lua"] = {globals = {"box_fiber_run_test"}} -- 2.23.0