Metadata-Version: 2.1
Name: pytest-monkeytype
Version: 1.0.3
Summary: pytest-monkeytype: Generate Monkeytype annotations from your pytest tests.
Home-page: https://github.com/mariusvniekerk/pytest-monkeytype
Author: Marius van Niekerk
Author-email: marius.v.niekerk@gmail.com
License: MIT
Description: # pytest-monkeytype
        
        [![Build Status](https://travis-ci.org/mariusvniekerk/pytest-monkeytype.svg?branch=master)](https://travis-ci.org/mariusvniekerk/pytest-monkeytype)
        [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/Apache-2.0)
        [![PyPI Python](https://img.shields.io/pypi/pyversions/pytest-monkeytype.svg)](https://pypi.python.org/pypi/pytest-monkeytype)
        [![PyPI Version](https://img.shields.io/pypi/v/pytest-monkeytype.svg)](https://pypi.python.org/pypi/pytest-monkeytype)
        [![PyPI Status](https://img.shields.io/pypi/status/pytest-monkeytype.svg)](https://pypi.python.org/pypi/pytest-monkeytype)
        [![PyPI Wheel](https://img.shields.io/pypi/wheel/pytest-monkeytype.svg)](https://pypi.python.org/pypi/pytest-monkeytype)
        
        
        [MonkeyType](https://github.com/Instagram/MonkeyType) as a
        [pytest](https://docs.pytest.org/en/latest/) plugin.
        
        ```
        pip install pytest-monkeytype
        
        # Generate annotations by running your pytest tests as usual:
        py.test --monkeytype-output=./monkeytype.sqlite3
        
        # Get a listing of modules annotated by monkeytype
        monkeytype list-modules 
        
        # Generate a stub file for those annotations using monkeytype:
        monkeytype stub some.module
        
        # Apply these annotations directly
        monkeytype apply some.module
        ```
        
        
        This project is inspired by [pytest-annotate](https://github.com/kensho-technologies/pytest-annotate)
Keywords: pytest py.test types annotations MonkeyType monkeytype pep484
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Framework :: Pytest
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.6
Description-Content-Type: text/markdown
