Metadata-Version: 2.1
Name: pytest-cmdline-add-args
Version: 1.7
Summary: Pytest plugin for custom argument handling and Allure reporting. This plugin allows you to add arguments before running a test.
Author-email: Yevhen Halitsyn <galitsyn.evgeniy955@gmail.com>
License: MIT
Description-Content-Type: text/markdown

# cmdline-add-args

Pytest plugin for handling and adding command line arguments

This plugin allows you to add custom arguments before running a test and generate Allure reports. It provides a flexible
way to inject arguments into Pytest and control the reporting process with Allure.

## Features

- Handling custom arguments
- Generating Allure reports
- Easy integration with Pytest

## Usage

- You need to create a config folder at the root of your project
- In this folder, create an env.py file in which the ALLURE_REPORT_PATH and CREATE_ALLURE_REPORT variables will be
  specified
  e.g:
- CREATE_ALLURE_REPORT = get('CREATE_ALLURE_REPORT', True)
- ALLURE_REPORT_PATH = f'{current_directory}/allure-results/browser_name'
