Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/msabramo/behave-plain-color-formatter

Formatter for behave that uses color but not fancy terminal repositioning
https://github.com/msabramo/behave-plain-color-formatter

behave python testing-tools

Last synced: 28 days ago
JSON representation

Formatter for behave that uses color but not fancy terminal repositioning

Awesome Lists containing this project

README

        

# behave-plain-color-formatter
Formatter for [behave][] that uses color but not fancy terminal repositioning

![screenshot](https://raw.githubusercontent.com/msabramo/behave-plain-color-formatter/master/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