Metadata-Version: 2.1
Name: better-test-preview
Version: 0.1.0
Summary: FastAPI app
Author: HangoverHGV
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi
Requires-Dist: uvicorn
Requires-Dist: jinja2
Requires-Dist: pydantic
Requires-Dist: pytest
Requires-Dist: pytest-html
Requires-Dist: ansi2html

# # Better Test Preview

Better Test Preview is a FastAPI application that allows you to run and preview test results in a web interface.

## Installation

To install the package, use:

```sh
pip install better-test-preview
```

## Usage

Import packages:

```python
from fastapi import FastAPI
from better_test_preview.better_test_preview import main
    
app = FastAPI()

app.include_router(main.router, prefix="/tests")
```

And you are done! Now you can run your tests and see the results in the web interface.

![img.png](img.png)

