Metadata-Version: 2.1
Name: pytest-pyreport
Version: 1.2.0
Summary: PyReport is a lightweight reporting plugin for Pytest that provides concise HTML report
Home-page: https://github.com/ToghrulMirzayev/pytest-pyreport
Author: Toghrul Mirzayev
Author-email: togrul.mirzoev@gmail.com
License: MIT
Keywords: pytest_pyreport,python,pytest,report
Classifier: Framework :: Pytest
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# PyReport

![PyPI - Downloads](https://img.shields.io/pypi/dm/pytest-pyreport)

# Quick overview
PyReport is a lightweight reporting plugin for Pytest that provides concise HTML reports by parsing JunitXML test results

# Pre-requisites
To be able to use this plugin you will need below dependencies:
* Python >=3.7
* Jinja2
* Pytest

# Getting started

To start using PyReport please follow below instructions:

* Install `pytest-pyreport` plugin:
```
pip install pytest-pyreport==<version>
```

* Run tests using below command:
```
pytest --junitxml=result.xml -o junit_family="xunit1" --pyreport
```

* You should see `pyreport.html` file that auto generated by using above command. \
Open it and check the test results as shown in below presentation

# Presentation
![pyreport](presentation.gif)
