trying to get coverage analysis to reasonable time

This commit is contained in:
Michael Freno
2025-11-20 14:27:34 -05:00
parent d0357672db
commit 92068d5315
17 changed files with 3011 additions and 380 deletions

12
.luacov
View File

@@ -13,6 +13,13 @@ return {
"tasks",
"themes",
"luarocks",
"loveStub", -- Exclude LÖVE stub from coverage
},
-- Include patterns - focus coverage on core modules
include = {
"modules/",
"FlexLove%.lua",
},
-- Run reporter by default
@@ -21,6 +28,7 @@ return {
-- Delete stats file after reporting
deletestats = false,
-- Tick options
tick = true
-- Tick options - enable for better line-by-line tracking
-- Note: With cluacov this is faster than pure Lua luacov
tick = true,
}