This repository was archived by the owner on Dec 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.laurarc
More file actions
59 lines (51 loc) · 1.27 KB
/
.laurarc
File metadata and controls
59 lines (51 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---------------------------------------------------------------------------
-- Externally configurable.
-- Change this.
---------------------------------------------------------------------------
-- Enables colors in terminal if possible. true by default.
-- Color = true
-- Directory where tests are located. Current directory by default.
-- Dir = "."
-- Be careful with with MS Windows, unix command fid and DIR are
-- completely incompatible.
-- TestPattern = "test.lua$"
-- Tabulation string, "\t" by default.
-- Tab = "\t"
-- Print full traceback from debug library on test failure.
-- false by default.
-- Traceback = false
-- List of reporters.
-- Reporters = {
-- "blank",
-- "count",
-- "dots",
-- "text",
-- }
-- Print tests summary if reporter support it. true by default.
-- ReportSummary = true
-- Date/time format for the reports.
-- DateFormat = "%Y-%m-%d %H:%M:%S",
-- Collect code coverage.
-- Coverage = {
-- Enabled = true,
-- Threshold = 50,
-- ThresholdPoints = {
-- Low = 50,
-- Average = 66.7,
-- High = 90,
-- },
-- ReportName = "covreport",
-- Dir = "coverage",
-- IncludePattern = ".*%.lua",
--
-- Coverage reporters.
-- Reporters = {
-- "blank",
-- "csv",
-- "html",
-- "json",
-- "lua",
-- "terminal",
-- "xml",
-- },
-- }