diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-03-14 18:38:20 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-03-14 18:38:20 +0300 |
| commit | 66ae6fccc4bfdc8534476626b67fb0387f44468e (patch) | |
| tree | 533aea93d8c284d8defadf186fb9da6020da2669 /.luacov | |
| parent | 0b29deeff5f0bea56b5a7785ba498b44f1480c3e (diff) | |
fix: exclude .cache dir from luacov
Diffstat (limited to '.luacov')
| -rw-r--r-- | .luacov | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ -- see https://keplerproject.github.io/luacov/doc/modules/luacov.defaults.html return { - exclude = {"src/fennel/macros.fnl"}, + exclude = {"src/fennel/macros.fnl", ".cache/*"}, runreport = true, statsfile = "luacov.stats"; reportfile = "luacov.report"; |