start testing

This commit is contained in:
Michael Freno
2025-11-14 20:59:40 -05:00
parent a218b4abed
commit 1dab1a197e
18 changed files with 4886 additions and 11 deletions

26
.luacov Normal file
View File

@@ -0,0 +1,26 @@
-- LuaCov configuration for FlexLove
return {
-- Stats file location
statsfile = "luacov.stats.out",
-- Report file location
reportfile = "luacov.report.out",
-- Exclude patterns (files to ignore) - use exclude instead of include for better results
exclude = {
"testing",
"examples",
"tasks",
"themes",
"luarocks",
},
-- Run reporter by default
runreport = false,
-- Delete stats file after reporting
deletestats = false,
-- Tick options
tick = true
}