summaryrefslogtreecommitdiff
path: root/src/luacov/tick.lua
blob: fdf2b2dd333724b6f916853c183bd8694c6aca8b (plain)
1
2
3
4
5
6
7
8
9
10
11

--- Load luacov using this if you want it to periodically 
-- save the stats file. This is useful if your script is
-- a daemon (i.e., does not properly terminate).
-- @class module
-- @name luacov.tick
-- @see luacov.defaults.savestepsize
local runner = require("luacov.runner")
runner.tick = true
runner.init()
return {}