diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-12 19:25:57 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-12 19:25:57 +0300 |
| commit | a1851986383148593ca85675d3dafd1e8517481a (patch) | |
| tree | a99dbf637b2f5fb6f1465695eee71a9d008fd80e /.luacov | |
| parent | 32f268f51538bd4c26d9da337e01d3df39ea2f2e (diff) | |
fix(CI): overhaul
Diffstat (limited to '.luacov')
| -rw-r--r-- | .luacov | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -3,10 +3,8 @@ -- see https://keplerproject.github.io/luacov/doc/modules/luacov.defaults.html return { - ["exclude"] = { - "src/fennel/macros.fnl" - }, + exclude = {"src/fennel/macros.fnl"}, runreport = true, - statsfile = "luacov.stats.out"; - reportfile = "luacov.report.out"; + statsfile = "luacov.stats"; + reportfile = "luacov.report"; } |