No description
Find a file
Daniel Baumann 7a2316d943
Releasing fastforward version 3.8.0-5~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-06-28 06:32:54 +02:00
.github Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
changelog Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
debian Releasing fastforward version 3.8.0-5~ffwd13+u1. 2026-06-28 06:32:54 +02:00
docs Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
example Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
src Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
testing Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
.gitignore Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
.pre-commit-config.yaml Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
.readthedocs.yaml Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
CHANGELOG.rst Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
LICENSE Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
PKG-INFO Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
pyproject.toml Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
README.rst Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
RELEASING.rst Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
setup.cfg Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00
tox.ini Adding upstream version 3.8.0. 2025-12-24 07:43:58 +01:00

============
pytest-xdist
============

.. image:: http://img.shields.io/pypi/v/pytest-xdist.svg
    :alt: PyPI version
    :target: https://pypi.python.org/pypi/pytest-xdist

.. image:: https://img.shields.io/conda/vn/conda-forge/pytest-xdist.svg
    :target: https://anaconda.org/conda-forge/pytest-xdist

.. image:: https://img.shields.io/pypi/pyversions/pytest-xdist.svg
    :alt: Python versions
    :target: https://pypi.python.org/pypi/pytest-xdist

.. image:: https://github.com/pytest-dev/pytest-xdist/workflows/test/badge.svg
    :target: https://github.com/pytest-dev/pytest-xdist/actions

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/ambv/black

The `pytest-xdist`_ plugin extends pytest with new test execution modes, the most used being distributing
tests across multiple CPUs to speed up test execution::

    pytest -n auto

With this call, pytest will spawn a number of workers processes equal to the number of available CPUs, and distribute
the tests randomly across them.

Documentation
=============

Documentation is available at `Read The Docs <https://pytest-xdist.readthedocs.io>`__.