Metadata-Version: 2.1
Name: pytest-richtrace
Version: 0.1.0
Summary: 
Author: Simon Kennedy
Author-email: sffjunkie+code@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: pytest (>=7.2.0,<8.0.0)
Requires-Dist: rich (>=12.6.0,<13.0.0)
Description-Content-Type: text/markdown

# pytest-richtrace

A pytest plugin that dumps the stages of the pytest testing process to the terminal.

It uses `rich` to add formatting to the output.

## Sample output

### Using --collect-only

```shell
pytest -q --collect-only --rich-trace
```

<img src="./docs/output-collect-only.svg" style="width: 70rem;"/>

### Full test run

```shell
pytest -q --rich-trace
```

<img src="./docs/output.svg" style="width: 70rem;"/>

