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: 7 months ago
JSON representation
Formatter for behave that uses color but not fancy terminal repositioning
- Host: GitHub
- URL: https://github.com/msabramo/behave-plain-color-formatter
- Owner: msabramo
- License: mit
- Created: 2018-06-28T22:41:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-15T09:36:28.000Z (about 6 years ago)
- Last Synced: 2024-10-05T07:16:20.762Z (9 months ago)
- Topics: behave, python, testing-tools
- Language: Python
- Homepage: https://pypi.org/project/behave-plain-color-formatter/
- Size: 90.8 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# behave-plain-color-formatter
Formatter for [behave][] that uses color but not fancy terminal repositioning
## 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