crystal-coverage
crystal-coverage copied to clipboard
Coverage tool for Crystal lang
This PR includes the following changes: 1. Make it build and collect coverage with Crystal 1.0.0+; 2. Add `--help` cli flag; 3. When run without specifying filenames, use the spec...
My project does not compile using the coverage binary. I was able to reproduce the first problem with this code: ```crystal class Repro @param = 1 CONST = 1 def...
I tried forking and updating/fixing this repo, but am having issues. What am I missing? Please add to the doc's re running the tests (and update the repo to work...
When I run on Windows, I get a `Postinstall` error ``` Run shards install Resolving dependencies Fetching https://github.com/lbguilherme/crystal-coverage.git Installing coverage (0.1.0 at 4148e9e) Postinstall of coverage: make bin Error: Process...
Please: - [ ] Add a command line option to `bin/crystal-coverage` for specifying a 'minimum coverage' value - [ ] Change the `bin/crystal-coverage` script so that - [ ] It...
Hi, In order to support crystal 1 you need to set the supported crystal version in shards.yml to ">=0.3X.0,
Now it's possible to pass directories to the CLI. I added a little `-h --help` option too
This is a very basic refactor. I'm not happy with the implementation, it was just a POC. I wanted to make it fancier (colorful, search, sorting columns), but it would...
It seems the require order is not quite the same. I needed to make the following change in order to get to compiling: ```diff +require "./pages/main_layout" require "./pages/** ``` Else...