Metadata-Version: 2.1
Name: behave-plain-color-formatter
Version: 0.0.1
Summary: Formatter for behave that uses color but not fancy terminal repositioning
Home-page: https://github.com/msabramo/behave-plain-color-formatter
Author: Marc Abramowitz
Author-email: msabramo@gmail.com
License: MIT
Description: # behave-plain-color-formatter
        Formatter for [behave][] that uses color but not fancy terminal repositioning
        
        ![screenshot](screenshot.png)
        
        ## Installation
        ```bash
        pip install behave-plain-color-formatter
        ````
        
        ## Usage
        You can specify the formatter directly in the command line using the -f argument:
        ```bash
        behave -f behave_plain_color_formatter:PlainColorFormatter
        ```
        or
        ```bash
        behave --format behave_plain_color_formatter:PlainColorFormatter
        ```
        
        You can also register the formatter to be available through a simple name:
        ```ini
        # -- FILE: behave.ini
        [behave.formatters]
        plain.color = behave_plain_color_formatter:PlainColorFormatter
        ```
        and the use it like:
        ```bash
        behave -f plain.color
        ```
        
        
        [behave]: https://github.com/behave/behave
        
Keywords: testing,behave,teamcity,formatter,report
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
