summaryrefslogtreecommitdiff
path: root/.luacov
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-03-04 16:08:27 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2017-03-04 17:35:18 +0000
commitb609d07be3b37f81f5c05ae56bd427d16bb6f5c9 (patch)
treec38a7b0c0bd126e989cb7582a1f9fbd30333adb5 /.luacov
parentf2f5b4e6229532f3ba69e9f32bc3305e37b20f4c (diff)
downloadgitano-b609d07be3b37f81f5c05ae56bd427d16bb6f5c9.tar.gz
adds support for coverage testing
Diffstat (limited to '.luacov')
-rw-r--r--.luacov22
1 files changed, 22 insertions, 0 deletions
diff --git a/.luacov b/.luacov
new file mode 100644
index 0000000..ffc7ab3
--- /dev/null
+++ b/.luacov
@@ -0,0 +1,22 @@
+-- -*- Lua -*-
+return {
+ statsfile = "luacov.stats.out",
+ reportfile = "luacov.report.out",
+ tick = false,
+ savestepsize = 100,
+ runreport = false,
+ deletestats = false,
+ codefromstrings = false,
+ include = { },
+ exclude = {
+ "^/usr/share",
+ "%.conf$",
+ "%.clod$",
+ "clod%-config", "^hooks/", "supple%-transfer",
+ "lang/[^/]+$",
+ "lib/gitano$",
+ "plugins/demo$",
+ "gitano/coverage$",
+ },
+ modules = {},
+}