Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pytest-dev/pytest-xdist
pytest plugin for distributed testing and loop-on-failures testing modes.
https://github.com/pytest-dev/pytest-xdist
hacktoberfest pytest pytest-plugin
Last synced: 5 days ago
JSON representation
pytest plugin for distributed testing and loop-on-failures testing modes.
- Host: GitHub
- URL: https://github.com/pytest-dev/pytest-xdist
- Owner: pytest-dev
- License: mit
- Created: 2015-09-01T18:51:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-12-24T06:19:39.000Z (18 days ago)
- Last Synced: 2025-01-04T07:58:45.315Z (7 days ago)
- Topics: hacktoberfest, pytest, pytest-plugin
- Language: Python
- Homepage: https://pytest-xdist.readthedocs.io
- Size: 1.86 MB
- Stars: 1,514
- Watchers: 54
- Forks: 230
- Open Issues: 271
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
- my-awesome-starred - pytest-dev/pytest-xdist - pytest plugin for distributed testing and loop-on-failures testing modes. (Python)
- awesome-pytest - pytest-xdist - pytest plugin for distributed testing and loop-on-failures testing modes. (Plugins)
- best-of-python-dev - GitHub - 40% open · ⏱️ 16.05.2024): (Testing Tools)
- jimsghstars - pytest-dev/pytest-xdist - pytest plugin for distributed testing and loop-on-failures testing modes. (Python)
README
============
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/blackThe `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 `__.