A pytest plugin for parallel test execution with configurable concurrency.
pip install pytest-concurrency# Run tests with 4 parallel workers
pytest --workers 4
# Auto-detect CPU cores
pytest --workers auto
# Via environment variable
PYTEST_CONCURRENCY_WORKERS=4 pytestFull documentation is available at https://qarium.github.io/pytest-concurrency/