Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sayanarijit/typecov
Run type coverage checks.
https://github.com/sayanarijit/typecov
coverage mypy python typing
Last synced: 17 days ago
JSON representation
Run type coverage checks.
- Host: GitHub
- URL: https://github.com/sayanarijit/typecov
- Owner: sayanarijit
- License: mit
- Created: 2019-06-02T17:28:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T05:07:08.000Z (5 months ago)
- Last Synced: 2024-09-27T16:17:51.577Z (about 2 months ago)
- Topics: coverage, mypy, python, typing
- Language: Python
- Homepage: https://pypi.org/project/typecov
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
typecov
==========
Run type coverage checks.[![PyPI version](https://img.shields.io/pypi/v/typecov.svg)](https://pypi.org/project/typecov)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/typecov.svg)](https://pypi.org/project/typecov)
[![Build Status](https://travis-ci.org/sayanarijit/typecov.svg?branch=master)](https://travis-ci.org/sayanarijit/typecov)
[![codecov](https://codecov.io/gh/sayanarijit/typecov/branch/master/graph/badge.svg)](https://codecov.io/gh/sayanarijit/typecov)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)Usage
-----
```
typecov --help
``````
usage: typecov [-h] [-V] coverage reportfileRun type coverage checks.
positional arguments:
coverage Minimum coverage required.
reportfile Path to the type coverage report with line counts.optional arguments:
-h, --help show this help message and exit
-V, --version show program's version number and exit
```Example
-------
```
typecov 99 .typecov/report/linecount.txt
```Contributing
------------
Install with
```
pip install -r dev-requirements.txt
```Run tests
```
pytest
```Or if you have [tox](https://github.com/tox-dev/tox) setup
```
tox
```