Metadata-Version: 2.4
Name: huginn-plugin-default-html-reporter
Version: 0.0.1
Summary: Default HTML report generator plugin for the Huginn test automation framework.
Author-email: Christopher Hart <christopherjhart95@gmail.com>
Requires-Python: >=3.11
Requires-Dist: huginn-framework>=0.1.0
Requires-Dist: jinja2<4.0.0,>=3.1.0
Requires-Dist: markdown<4.0.0,>=3.4.0
Description-Content-Type: text/markdown

# huginn-plugin-default-html-reporter

Default HTML report generator plugin for the [Huginn](https://github.com/ChartinoLabs/Huginn) test automation framework.

## Installation

```bash
pip install huginn-plugin-default-html-reporter
```

Or install alongside the framework via the `default` extras:

```bash
pip install huginn-framework[default]
```

## Usage

Once installed, Huginn automatically discovers this plugin via entry points. No configuration is needed — the HTML report is generated after each test run.

To disable reporting, set an empty reporters list in your project's `pyproject.toml`:

```toml
[tool.huginn.plugins]
reporters = []
```
