1 2--- Load luacov using this if you want it to periodically 3-- save the stats file. This is useful if your script is 4-- a daemon (i.e., does not properly terminate). 5-- @class module 6-- @name luacov.tick 7-- @see luacov.defaults.savestepsize 8local runner = require("luacov.runner") 9runner.tick = true 10runner.init() 11return {} 12 13