File "src/luacov/reporter.lua
"
Report module, will transform statistics file into a report.
Functions
M.report () | Starts the report generator To load a config, use luacov.runner to load settings and then start the report. |
Functions
- M.report ()
-
Starts the report generator To load a config, use
luacov.runner
to load settings and then start the report.Example:
local runner = require("luacov.runner")
local reporter = require("luacov.reporter")
runner.load_config()
table.insert(luacov.configuration.include, "thisfile")
reporter.report()