Go to file
Bruno Oliveira 8cd10225df
Add sphinx docs folder and changelog URLs to metadata (#751)
2022-01-29 16:29:36 +00:00
.github Add support for Python 3.10 2021-09-15 17:14:59 +03:00
changelog Release 2.5.0 2021-12-10 08:18:22 -03:00
docs Add sphinx docs folder and changelog URLs to metadata (#751) 2022-01-29 16:29:36 +00:00
example Deprecate --boxed 2021-11-02 09:38:56 +02:00
src/xdist Skip test_warning_captured_deprecated_in_pytest_6 in pytest>=7.1 2021-12-10 08:31:55 -03:00
testing Remove obsolete skip based on java (no longer supported) 2021-12-27 08:05:46 -03:00
.gitignore Adopt 'src' layout and add 'testing' extras 2019-06-06 19:35:13 -03:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate 2022-01-10 21:28:28 +00:00
CHANGELOG.rst Fix CHANGELOG header 2021-12-10 08:19:30 -03:00
LICENSE Fix line ending issues 2018-07-27 18:15:58 -03:00
MANIFEST.in Exclude SCM and CI files from distribution 2020-06-26 12:02:03 -04:00
README.rst Add sphinx docs folder and changelog URLs to metadata (#751) 2022-01-29 16:29:36 +00:00
RELEASING.rst Add final note to merge PR in RELEASING.rst 2021-09-21 09:21:51 -03:00
pyproject.toml Add build-system to pyproject.toml 2021-11-01 09:04:14 +02:00
setup.cfg Add sphinx docs folder and changelog URLs to metadata (#751) 2022-01-29 16:29:36 +00:00
setup.py Add build-system to pyproject.toml 2021-11-01 09:04:14 +02:00
tox.ini Add sphinx docs folder and changelog URLs to metadata (#751) 2022-01-29 16:29:36 +00: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/build/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>`__.