Skip to content

Pytest-with-Eric/pytest-allure-report-example

Repository files navigation

Pytest Allure Report Example

This repo contains the sample code for the article - How To Create Interactive Test Reports with Pytest and Allure

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.

Usage

To generate the allure reports, you can use the following command:

$ poetry run pytest --alluredir=allure-results

To view the allure reports, you can use the following command:

$ poetry run allure serve allure-results

If you have any questions about the project please raise an Issue on GitHub.