a code coverage tool for racket
Go to file
2015-08-30 13:20:43 -05:00
cover fixing test path coverage 2015-08-30 13:20:43 -05:00
.gitignore ignoring the doc directory 2015-01-18 11:49:02 -05:00
.travis.yml added missing --deps search-auto 2015-08-08 18:40:53 -05:00
info.rkt speedups for coverage map generation 2015-08-30 12:38:36 -05:00
LICENSE added MIT License 2015-02-14 00:19:04 -05:00
README.md Use Shields.io badges for uniformity and add a Scribble badge. 2015-08-28 09:53:01 -04:00

Cover

Build Status Coverage Status Scribble Stories in Ready

This library is an extensible code coverage tool for racket.

How to install

Install via raco pkg install cover. To install for development, checkout the repository, cd into the new directory and run raco pkg install.

How to use

To view the arguments for Cover run raco cover -h.

Code coverage can be generated by specifying the -f <format> flag.

The only built in format is html simply generates html files for each source file containing coverage information and highlighted source code.

For integration with coveralls see cover-coveralls.

For more detailed usage see the full documentation.

Use with TravisCI

Cover works with Travis CI, however you may want to install an output format specialized to cover coverage service, like cover-coveralls.

Internals

Cover comes with a racket API, which can be read about in the full documentation.