reversion
This commit is contained in:
19
.luacov
19
.luacov
@@ -2,10 +2,10 @@
|
|||||||
return {
|
return {
|
||||||
-- Stats file location
|
-- Stats file location
|
||||||
statsfile = "luacov.stats.out",
|
statsfile = "luacov.stats.out",
|
||||||
|
|
||||||
-- Report file location
|
-- Report file location
|
||||||
reportfile = "luacov.report.out",
|
reportfile = "luacov.report.out",
|
||||||
|
|
||||||
-- Exclude patterns (files to ignore) - use exclude instead of include for better results
|
-- Exclude patterns (files to ignore) - use exclude instead of include for better results
|
||||||
exclude = {
|
exclude = {
|
||||||
"testing",
|
"testing",
|
||||||
@@ -13,22 +13,11 @@ return {
|
|||||||
"tasks",
|
"tasks",
|
||||||
"themes",
|
"themes",
|
||||||
"luarocks",
|
"luarocks",
|
||||||
"loveStub", -- Exclude LÖVE stub from coverage
|
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Include patterns - focus coverage on core modules
|
|
||||||
include = {
|
|
||||||
"modules/",
|
|
||||||
"FlexLove%.lua",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Run reporter by default
|
-- Run reporter by default
|
||||||
runreport = false,
|
runreport = false,
|
||||||
|
|
||||||
-- Delete stats file after reporting
|
-- Delete stats file after reporting
|
||||||
deletestats = false,
|
deletestats = false,
|
||||||
|
|
||||||
-- Tick options - enable for better line-by-line tracking
|
|
||||||
-- Note: With cluacov this is faster than pure Lua luacov
|
|
||||||
tick = true,
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user