Metadata-Version: 2.4
Name: pytest-concurrency
Version: 0.0.2
Summary: A pytest plugin for parallel test execution with configurable concurrency
License: MIT
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pytest>=7.0
Requires-Dist: gevent>=24.11.0
Requires-Dist: pytest-gevent>=1.1.0
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-cov>=5.0; extra == "test"
Requires-Dist: ruff>=0.15.0; extra == "test"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.6.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.5.0; extra == "docs"

# pytest-concurrency

A pytest plugin for parallel test execution with configurable concurrency.

## Installation

```bash
pip install pytest-concurrency
```

## Quick Start

```bash
# Run tests with 4 parallel workers
pytest --workers 4

# Auto-detect CPU cores
pytest --workers auto

# Via environment variable
PYTEST_CONCURRENCY_WORKERS=4 pytest
```

## Documentation

Full documentation is available at [https://qarium.github.io/pytest-concurrency/](https://qarium.github.io/pytest-concurrency/)
