Metadata-Version: 2.1
Name: pytest-codestyle
Version: 1.4.0
Summary: pytest plugin to run pycodestyle
Home-page: https://github.com/henry0312/pytest-codestyle
Author: Tsukasa OMOTO
Author-email: henry0312@gmail.com
License: MIT
Description: # pytest-codestyle
        
        [![PyPI version](https://badge.fury.io/py/pytest-codestyle.svg)](https://pypi.org/project/pytest-codestyle/)
        
        [pytest](https://docs.pytest.org/en/latest/) plugin to run [pycodestyle](https://github.com/PyCQA/pycodestyle)
        
        ## Installation
        
        ```sh
        pip install pytest-codestyle
        ```
        
        ## Usage
        
        ```sh
        pytest --codestyle ...
        ```
        
        For detail, please see `pytest -h` after installation.
        
        ## Configuration
        
        You can configure options of pycodestyle with `setup.cfg` (or `pytest.ini`).  
        (cf. [Configuration — pytest documentation](https://docs.pytest.org/en/latest/customize.html))
        
        For example,
        
        ```
        [tool:pytest]
        codestyle_max_line_length = 100
        codestyle_ignore = E302 E501
        ```
        
        ## Licence
        
        The MIT License  
        Copyright (c) 2017 Tsukasa OMOTO
        
        ## Acknowledgments
        
        - [pytest-dev / pytest-pep8 — Bitbucket](https://bitbucket.org/pytest-dev/pytest-pep8)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: ~=3.5
Description-Content-Type: text/markdown
Provides-Extra: tests
