{"id":13740517,"url":"https://github.com/florence/cover","last_synced_at":"2026-02-01T02:31:42.825Z","repository":{"id":21048483,"uuid":"24347312","full_name":"florence/cover","owner":"florence","description":"a code coverage tool for racket","archived":false,"fork":false,"pushed_at":"2024-05-16T18:55:38.000Z","size":898,"stargazers_count":38,"open_issues_count":15,"forks_count":7,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-19T19:51:51.872Z","etag":null,"topics":["coverage","racket"],"latest_commit_sha":null,"homepage":"","language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/florence.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-09-22T22:04:32.000Z","updated_at":"2024-02-10T09:48:34.000Z","dependencies_parsed_at":"2024-06-18T15:26:44.177Z","dependency_job_id":"42842a21-bbc1-4e76-9e1d-fd46c0c97b3f","html_url":"https://github.com/florence/cover","commit_stats":{"total_commits":408,"total_committers":11,"mean_commits":37.09090909090909,"dds":0.3700980392156863,"last_synced_commit":"bc17e4e22d47b1da91ddaa5eafefe28f4675e85c"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/florence/cover","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florence%2Fcover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florence%2Fcover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florence%2Fcover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florence%2Fcover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/florence","download_url":"https://codeload.github.com/florence/cover/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florence%2Fcover/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28965352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T02:14:24.993Z","status":"ssl_error","status_checked_at":"2026-02-01T02:13:55.706Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coverage","racket"],"created_at":"2024-08-03T04:00:48.998Z","updated_at":"2026-02-01T02:31:42.811Z","avatar_url":"https://github.com/florence.png","language":"Racket","funding_links":[],"categories":["Racket","Testing"],"sub_categories":[],"readme":"# Cover\n[![Build Status](https://img.shields.io/travis/florence/cover/master.svg)](https://travis-ci.org/florence/cover)\n[![Coverage Status](https://codecov.io/github/florence/cover/coverage.svg?branch=master)](https://codecov.io/github/florence/cover?branch=master)\n[![Scribble](https://img.shields.io/badge/Docs-Scribble-blue.svg)](http://pkg-build.racket-lang.org/doc/cover/index.html)\n\nThis library is an extensible code coverage tool for racket. It comes with the ability to generate\nHTML reports, and has extensions to submit coverage reports to [Codecov](https://codecov.io/) and\n[Coveralls](https://coveralls.io/).  You can also create your own coverage formats.\n\n## How to install\n\nInstall via `raco pkg install cover`, or from the `\"File\" -\u003e \"Install Package...\"` menu in DrRacket.\n\n## Basic Usage\n\nThe basic usage of Cover will generate an HTML report. For example, checkout and install this\nlibrary and run `raco cover .` in that directory. Then open `coverage/index.html` in your favorite\nweb browser. You should see something like this:\n\n![Example](index_example.png)\n\nYou can sort the entries by clicking on the header for any column. You can see a more detailed view\nfor any file by clicking on its name. For example, `private/format-utils.rkt` looks like:\n\n![Example2](page_example.png)\n\nYou can view the arguments for Cover run `raco cover -h`.\n\n## Different Formats\n\nCode coverage can be generated in a different format by specifying the `-f \u003cformat\u003e` flag.\n\nThe only built in format is `html` simply generates html files for each source file containing\ncoverage information and highlighted source code. This is the default.\n\nIf you would like to use Cover with [Codecov](https://codecov.io/) see\n[cover-codecov](https://github.com/rpless/cover-codecov)\n\nIf you would like to use Cover with [Coveralls](https://coveralls.io/) see\n[cover-coveralls](https://github.com/rpless/cover-coveralls).\n\nYou can also build a custom output format. For more detailed usage see\n[the full documentation](http://pkg-build.racket-lang.org/doc/cover/index.html).\n\n## Use with TravisCI\n\nCover works with Travis CI, however you may want to install an output format specialized to cover\ncoverage service, like [cover-coveralls](https://github.com/rpless/cover-coveralls).\n\n## Gotchas and Bugs\n\nThere is a list of odd behavior you may encounter when using Cover in the\n[Gotcha's Section](http://pkg-build.racket-lang.org/doc/cover/basics.html#%28part._.Gotcha_s%29)\nof the documentation.\n\n## Racket API\n\nCover comes with a racket API, which can be read about in\n[the full documentation](http://pkg-build.racket-lang.org/doc/cover/index.html).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorence%2Fcover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflorence%2Fcover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorence%2Fcover/lists"}