Metadata-Version: 2.1
Name: coveragespace
Version: 2.0.0
Summary: A place to track your code coverage metrics.
Home-page: https://coverage.space/client/
License: MIT
Keywords: coverage,testing,command-line
Author: Jace Browning
Author-email: jacebrowning@gmail.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Requires-Dist: backports.shutil-get-terminal-size (>=1.0,<2.0)
Requires-Dist: colorama (>=0.3,<0.4)
Requires-Dist: coverage (>=4.0,<5.0)
Requires-Dist: docopt (>=0.6,<0.7)
Requires-Dist: requests (>=2.0,<3.0)
Description-Content-Type: text/markdown

Unix: [![Unix Build Status](http://img.shields.io/travis/jacebrowning/coverage-space-cli/develop.svg)](https://travis-ci.org/jacebrowning/coverage-space-cli) Windows: [![Windows Build Status](https://img.shields.io/appveyor/ci/jacebrowning/coverage-space-cli/develop.svg)](https://ci.appveyor.com/project/jacebrowning/coverage-space-cli)<br>Metrics: [![Coverage Status](http://img.shields.io/coveralls/jacebrowning/coverage-space-cli/develop.svg)](https://coveralls.io/r/jacebrowning/coverage-space-cli) [![Scrutinizer Code Quality](http://img.shields.io/scrutinizer/g/jacebrowning/coverage-space-cli.svg)](https://scrutinizer-ci.com/g/jacebrowning/coverage-space-cli/?branch=develop)<br>Usage: [![PyPI Version](http://img.shields.io/pypi/v/coveragespace.svg)](https://pypi.python.org/pypi/coveragespace)

# Overview

The official command-line client for [The Coverage Space](http://coverage.space).

# Setup

## Requirements

* Python 2.7+ or Python 3.3+

## Installation

The client can be installed with pip:

```sh
$ pip install --upgrade coveragespace
```

or directly from the source code:

```sh
$ git clone https://github.com/jacebrowning/coverage-space-cli.git
$ cd coverage-space-cli
$ python setup.py install
```

# Usage

To update the value for a test coverage metric:

```sh
$ coveragespace <owner/repo> <metric>
```

For example, after testing with code coverage enabled:

```sh
$ coveragespace owner/repo unit
```

will attempt to extract the current coverage data from your working tree and compare that with the last known value. The coverage value can also be manually specified:

```sh
$ coveragespace <owner/repo> <metric> <value>
```

