https://github.com/pytest-with-eric/pytest-configure-example
What Is The pytest_configure Hook? (A Simple Guide)
https://github.com/pytest-with-eric/pytest-configure-example
pytest-configure pytest-conftest pytest-hooks
Last synced: about 1 month ago
JSON representation
What Is The pytest_configure Hook? (A Simple Guide)
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-configure-example
- Owner: Pytest-with-Eric
- Created: 2023-12-15T14:39:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-12T08:13:17.000Z (over 1 year ago)
- Last Synced: 2025-01-29T12:29:45.099Z (3 months ago)
- Topics: pytest-configure, pytest-conftest, pytest-hooks
- Language: Python
- Homepage: https://pytest-with-eric.com/hooks/pytest-configure/
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What Is The pytest_configure Hook? (A Simple Guide)
This repo contains the sample code for the article [What Is The pytest_configure Hook? (A Simple Guide)](https://pytest-with-eric.com/hooks/pytest-configure/)
This guide covers pytest configure and how it is used to customize Pytest's behavior to your needs.
# Requirements
* Python (3.10+)Please install the dependencies via the `requirements.txt` file using
```bash
pip install -r requirements.txt
```If you don't have Pip installed please follow instructions online on how to do it.
# How To Run the Unit Tests
To run the Unit Tests, from the root of the repo run
```bash
pytest -v -s
```If you have any questions about the project please raise an Issue on GitHub.