From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.mail.ru (smtp1.mail.ru [94.100.179.111]) (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 3C1C4445321 for ; Thu, 16 Jul 2020 17:12:22 +0300 (MSK) From: sergeyb@tarantool.org Date: Thu, 16 Jul 2020 17:11:22 +0300 Message-Id: <968d5dbf565ca7990615543bd9e473acb36998d1.1594907318.git.sergeyb@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 02/19] Fix 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: alexander.turenko@tarantool.org From: Sergey Bronnikov Part of #4681 Reviewed-by: Vladislav Shpilevoy Reviewed-by: Igor Munkin Co-authored-by: Vladislav Shpilevoy Co-authored-by: Igor Munkin --- .luacheckrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.luacheckrc b/.luacheckrc index 4055b0994..358789457 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -33,7 +33,7 @@ exclude_files = { -- Third-party source code. "src/box/lua/serpent.lua", "test-run/**/*.lua", - "test/app/**/*.lua", + "test/app/*.test.lua", "test/box/**/*.lua", "test/box-py/**/*.lua", "test/box-tap/**/*.lua", @@ -81,3 +81,6 @@ files["test/app-tap/lua/require_mod.lua"] = { files["test/app-tap/string.test.lua"] = { globals = {"utf8"} } +files["test/app/lua/fiber.lua"] = { + globals = {"box_fiber_run_test"} +} -- 2.26.2