Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pytest-with-eric/pytest-xdist-example
Parallel Testing Made Easy With pytest-xdist
https://github.com/pytest-with-eric/pytest-xdist-example
pytest-parallel pytest-xdist xdist
Last synced: about 1 month ago
JSON representation
Parallel Testing Made Easy With pytest-xdist
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-xdist-example
- Owner: Pytest-with-Eric
- Created: 2024-05-06T13:13:47.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-20T08:34:39.000Z (8 months ago)
- Last Synced: 2024-05-20T09:46:07.546Z (8 months ago)
- Topics: pytest-parallel, pytest-xdist, xdist
- Language: Python
- Homepage: https://pytest-with-eric.com/plugins/pytest-xdist/
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest xdist Example
This repo contains the sample code for the article - [Parallel Testing Made Easy With pytest-xdist](https://pytest-with-eric.com/plugins/pytest-xdist/)# Requirements
* Python (3.12)
* Pytest
* pytest-xdist
* pytest-randomlyPlease 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
```If you have any questions about the project, please raise an Issue on GitHub.