forked from bakpakin/Fennel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added 'coverage' target to Makefile using luacov
To get more accurate results, we'll likely need to tweak the settings a bit in .luacov, but at least we now have a basic working setting for generating coverage reports. Not yet adding this to `make ci` - we can always do so once we play with it more , and use a more readable coverage reporter such as luacov-console, luacov-cobertura, luacov-coveralls, etc.
- Loading branch information
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- setting default behaviors for luacov. For documentation on the options, | ||
-- see https://keplerproject.github.io/luacov/doc/modules/luacov.defaults.html | ||
|
||
return { | ||
runreport = true, | ||
} | ||
|
||
-- vim: ft=lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters