Exclude failing build tests (#4557)

This commit is contained in:
Wires77
2022-07-11 22:28:08 -05:00
committed by GitHub
parent c82dd5800a
commit 5de659f8c7
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ return {
lpath = "../runtime/lua/?.lua;../runtime/lua/?/init.lua",
helper = "HeadlessWrapper.lua",
ROOT = { "../spec" },
--exclude-tags = "builds",
},
generate = {
directory = "src",

View File

@@ -15,7 +15,7 @@ local function fetchBuilds(path, buildList)
return buildList
end
expose("test all builds", function()
expose("test all builds #builds", function()
local buildList = fetchBuilds("../spec/TestBuilds")
for buildName, testBuild in pairs(buildList) do
loadBuildFromXML(testBuild.xml, buildName)