mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
4f35834b2e
so that Travis CI job won't fail because of timeout.
64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
--- Global configuration file. Copy, customize and store in your
|
|
-- project folder as '.luacov' for project specific configuration
|
|
-- @class module
|
|
-- @name luacov.defaults
|
|
|
|
-- global flag to indicate coverage test
|
|
LUACOV = true
|
|
|
|
return {
|
|
|
|
-- default filename to load for config options if not provided
|
|
-- only has effect in 'luacov.defaults.lua'
|
|
['configfile'] = '.luacov',
|
|
|
|
-- filename to store stats collected
|
|
['statsfile'] = 'luacov.stats.out',
|
|
|
|
-- filename to store report
|
|
['reportfile'] = 'luacov.report.out',
|
|
|
|
-- Run reporter on completion? (won't work for ticks)
|
|
runreport = true,
|
|
|
|
-- Delete stats file after reporting?
|
|
deletestats = false,
|
|
|
|
-- Patterns for files to include when reporting
|
|
-- all will be included if nothing is listed
|
|
-- (exclude overrules include, do not include
|
|
-- the .lua extension)
|
|
['include'] = {
|
|
'frontend/.*$',
|
|
},
|
|
|
|
-- Patterns for files to exclude when reporting
|
|
-- all will be included if nothing is listed
|
|
-- (exclude overrules include, do not include
|
|
-- the .lua extension)
|
|
['exclude'] = {
|
|
'luacov$',
|
|
'luacov.reporter$',
|
|
'luacov.defaults$',
|
|
'luacov.runner$',
|
|
'luacov.stats$',
|
|
'luacov.tick$',
|
|
'ansicolors$',
|
|
'copas$',
|
|
'coxpcall$',
|
|
'mediator$',
|
|
'moonscript.*$',
|
|
'socket$',
|
|
'busted.*$',
|
|
'luassert.*$',
|
|
'pl/.*$',
|
|
'say.init$',
|
|
'ffi/.*_h$',
|
|
'common/.*$',
|
|
'JSON',
|
|
'MD5',
|
|
},
|
|
|
|
|
|
}
|