Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacebrowning/coverage-space
A place to track your code coverage metrics.
https://github.com/jacebrowning/coverage-space
api coverage coverage-metrics testing
Last synced: 2 months ago
JSON representation
A place to track your code coverage metrics.
- Host: GitHub
- URL: https://github.com/jacebrowning/coverage-space
- Owner: jacebrowning
- License: other
- Created: 2016-01-29T02:16:25.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T17:59:31.000Z (4 months ago)
- Last Synced: 2024-08-20T20:15:11.259Z (4 months ago)
- Topics: api, coverage, coverage-metrics, testing
- Language: Python
- Homepage: https://coverage.space
- Size: 1.27 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# The Coverage Space
> A place to track your code coverage metrics.
[![Test Status](https://img.shields.io/circleci/project/github/jacebrowning/coverage-space/main.svg?label=tests)](https://circleci.com/gh/jacebrowning/coverage-space)
[![Docs Status](https://img.shields.io/travis/jacebrowning/coverage-space/main?label=docs)](https://travis-ci.org/github/jacebrowning/coverage-space)
[![Coverage Status](http://img.shields.io/coveralls/jacebrowning/coverage-space/main.svg)](https://coveralls.io/r/jacebrowning/coverage-space)
[![Scrutinizer Code Quality](http://img.shields.io/scrutinizer/g/jacebrowning/coverage-space.svg)](https://scrutinizer-ci.com/g/jacebrowning/coverage-space/?branch=main)
[![GitHub Sponsor](https://img.shields.io/badge/server%20costs-%247%2Fmonth-red)](https://github.com/sponsors/jacebrowning)## Quick Start
### Prerequisites
The API can be used with `curl`, but [HTTPie](https://github.com/jkbrzt/httpie) is preferred:
```sh
$ pip install HTTPie
```### Commands
Get the latest coverage metrics:
```sh
$ http GET api.coverage.space/my_owner/my_repo
```Update coverage metrics:
```sh
$ http PUT api.coverage.space/my_owner/my_repo unit=90 --check-status
```Reset coverage metrics:
```sh
$ http DELETE api.coverage.space/my_owner/my_repo
```## Documentation
Read the full docs at [coverage.space](https://coverage.space).