Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pytest-with-eric/pytest-allure-report-example
How To Create Interactive Test Reports with Pytest and Allure
https://github.com/pytest-with-eric/pytest-allure-report-example
allure-report allure-reports pytest-allure python-allure
Last synced: 21 days ago
JSON representation
How To Create Interactive Test Reports with Pytest and Allure
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-allure-report-example
- Owner: Pytest-with-Eric
- Created: 2024-06-06T07:44:53.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-14T11:13:40.000Z (6 months ago)
- Last Synced: 2024-06-14T12:34:51.383Z (6 months ago)
- Topics: allure-report, allure-reports, pytest-allure, python-allure
- Language: JavaScript
- Homepage: https://pytest-with-eric.com/reporting/pytest-allure-report/
- Size: 1.09 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest Allure Report Example
This repo contains the sample code for the article - [How To Create Interactive Test Reports with Pytest and Allure](https://pytest-with-eric.com/reporting/pytest-allure-report/)
## Requirements
* Python (3.12)
* Allure Report## Installation
To install the project, you need to have Poetry installed. If you don't have it installed, you can install it by following the instructions [here](https://python-poetry.org/docs/#installation).
## Usage
To generate the allure reports, you can use the following command:
```bash
$ poetry run pytest --alluredir=allure-results
```To view the allure reports, you can use the following command:
```bash
$ poetry run allure serve allure-results
```If you have any questions about the project please raise an Issue on GitHub.