Go to file
苏芳 56cba5b9f2
!1 Update version info.
Merge pull request !1 from 苏芳/openkylin/yangtze
2023-03-17 03:02:01 +00:00
changelog Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
debian Update version info. 2023-03-17 10:44:19 +08:00
docs Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
example Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
src Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
testing Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
CHANGELOG.rst Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
LICENSE Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
MANIFEST.in Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
PKG-INFO Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
README.rst Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
RELEASING.rst Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
pyproject.toml Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
setup.cfg Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00
tox.ini Import Upstream version 3.1.0 2023-03-14 14:27:44 +08:00

README.rst

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

============
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>`__.