Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anykeyh/crystal-coverage
Coverage tool for Crystal lang
https://github.com/anykeyh/crystal-coverage
coverage crystal crystal-coverage spec
Last synced: about 1 month ago
JSON representation
Coverage tool for Crystal lang
- Host: GitHub
- URL: https://github.com/anykeyh/crystal-coverage
- Owner: anykeyh
- License: mit
- Created: 2018-04-21T17:26:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-23T11:27:04.000Z (over 2 years ago)
- Last Synced: 2024-10-25T01:31:38.212Z (about 2 months ago)
- Topics: coverage, crystal, crystal-coverage, spec
- Language: Crystal
- Size: 59.6 KB
- Stars: 63
- Watchers: 7
- Forks: 11
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - coverage
README
# crystal-coverage
Coverage tool for Crystal lang## Welcome
Before you start, you must understand this is a proof of concept. I'm not happy
with the current code implementation.Lot of features and options will change in the future.
The code will probably be rebuilt almost from scratch
Note also than it hasn't yet been properly tested. Ironic, for a cover tool, isn't it? :-)
anyway, if you're bold enough to give a try, read the getting started below !## Installation
Just add this line in your `shard.yml` file
```yaml
development_dependencies:
coverage:
github: anykeyh/crystal-coverage
```Wait for the binary to compile. The binary will be build in `bin/crystal-coverage`
## Usage
```
crystal-coverage spec/myfile_spec1.cr spec/myfile_spec2.cr
```Coverage file will be recreated after your software run on `coverage/` folder.
## Bugs
There's probably dozen of bugs. Please fill issues and PR are welcome.
The library will evolve, so don't hesitate to `shards update` and test with the
latest release before submitting an issue.Due to some limitation, there's probably still a non-zero chance your code will
not compile with the coverage instrumentations.In this case, you can give a look to the generated output using the `-p` argument:
```
crystal-coverage src/main.cr -p
```When you fill issues, would be great to isolate the code which fail to load, so I
can add it to my code library and fix the library.## Performances
The performances will slightly degrade using the coverage tool. Note the
software is executed without release flag.To test in `--release` mode, you can do:
```
crystal-coverage src/main.cr -p | crystal eval --release
```## How does it works?
It uses ASTNode parsing to inject coverage instrumentations and reflag the lines
of code using `#` directiveIt covers only the relative files (e.g. require starting with `.`) inside your
project directory.It then generate a report in the directory `/coverage/` relative to your project
## Planned features
- Binding with coveralls