Metadata-Version: 2.1
Name: kappa-maki
Version: 1.0.2
Summary: Formatter for generating Cucumber-format JSON test results using the Behave test framework.  Named after a refreshing cucumber sushi cocktail.
Home-page: https://github.com/TechnologyBrewery/kappa-maki
License: MIT
Author: Isaac Becerra Llanos
Author-email: ibecerrallanos@cpointe-inc.com
Requires-Python: >=3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Repository, https://github.com/TechnologyBrewery/kappa-maki
Description-Content-Type: text/markdown

[![PyPI](https://img.shields.io/pypi/v/kappa-maki)](https://pypi.org/project/kappa-maki/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kappa-maki)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/kappa-maki)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://opensource.org/licenses/mit)

Forked from and inspired by the [behave-cucumber-formatter](https://github.com/BluThaitanium/Cucumber-Behave-Package/tree/main) plugin.
Kappa Maki is a refreshing cocktail that is intended to taste like a spicy cucumber sushi roll.  Like the cocktail, it brings the refreshing
results of behave tests into a new format that is fit for cucumber reporting.  This is useful in CI and/or polyglot environments where 
cucumber reporting is already in use.  


# Kappa Maki Formatter 🥒🍸
A formatter for behave's outputs using Cucumber

Output is similar to `behave --format json.pretty`

## Installation
```bash
pip install kappa-maki
````

## Usage

```bash
behave --format kappa_maki:PrettyCucumberJSONFormatter
```
---
Or with an `.ini` file:
```ini
# -- FILE: behave.ini
[behave.formatters]
cucumber = kappa_maki:PrettyCucumberJSONFormatter
```
and use the shorthand:
```bash
behave --format cucumber 
```

## Un-Installation
```bash
pip uninstall kappa-maki
```

