Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/pandoc/datadir/luacov/tick.lua
12923 views
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
8
local runner = require("luacov.runner")
9
runner.tick = true
10
runner.init()
11
return {}
12
13