Metadata-Version: 2.1
Name: pytest-pyreport
Version: 1.0.1
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.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Jinja2 (>=3.1.2)
Requires-Dist: pytest (>=7.3.1)

# PyReport

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

# 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
