https://github.com/pytest-with-eric/pytest-setup-teardown-example
What is Setup and Teardown in Pytest? (Importance of a Clean Test Environment)
https://github.com/pytest-with-eric/pytest-setup-teardown-example
pytest-fixture-scope pytest-fixtures setup-teardown teardown
Last synced: about 1 month ago
JSON representation
What is Setup and Teardown in Pytest? (Importance of a Clean Test Environment)
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-setup-teardown-example
- Owner: Pytest-with-Eric
- Created: 2023-09-18T16:03:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-11T05:16:53.000Z (over 1 year ago)
- Last Synced: 2025-01-29T12:30:04.774Z (3 months ago)
- Topics: pytest-fixture-scope, pytest-fixtures, setup-teardown, teardown
- Language: Python
- Homepage: https://pytest-with-eric.com/pytest-best-practices/pytest-setup-teardown/
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest Setup Teardown Example
This repo contains the sample code for the article - [What is Setup and Teardown in Pytest? (Importance of a Clean Test Environment)](https://pytest-with-eric.com/pytest-best-practices/pytest-setup-teardown/)
This project is a simple example of how to use the `setup` and `teardown` methods in Pytest.
## Requirements
* Python 3.11.4
Please install the dependencies via the `requirements.txt` file using
```
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
```
pytest -v -s
```If you have any questions about the project please raise an Issue on GitHub.