1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
Metadata-Version: 2.1
Name: pytest-forked
Version: 1.6.0
Summary: run tests in isolated forked subprocesses
Home-page: https://github.com/pytest-dev/pytest-forked
Author: pytest-dev
Author-email: pytest-dev@python.org
License: MIT
Platform: linux
Platform: osx
Classifier: Development Status :: 7 - Inactive
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
pytest-forked: run each test in a forked subprocess
====================================================
.. warning::
this is a extraction of the xdist --forked module,
future maintenance beyond the bare minimum is not planned until a new maintainer is found.
This plugin **does not work on Windows** because there's no ``fork`` support.
* ``--forked``: run each test in a forked
subprocess to survive ``SEGFAULTS`` or otherwise dying processes.
|python| |version| |ci| |pre-commit| |black|
.. |version| image:: http://img.shields.io/pypi/v/pytest-forked.svg
:target: https://pypi.python.org/pypi/pytest-forked
.. |ci| image:: https://github.com/pytest-dev/pytest-forked/workflows/build/badge.svg
:target: https://github.com/pytest-dev/pytest-forked/actions
.. |python| image:: https://img.shields.io/pypi/pyversions/pytest-forked.svg
:target: https://pypi.python.org/pypi/pytest-forked/
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/ambv/black
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/pytest-dev/pytest-forked/master.svg
:target: https://results.pre-commit.ci/latest/github/pytest-dev/pytest-forked/master
Installation
-----------------------
Install the plugin with::
pip install pytest-forked
or use the package in develope/in-place mode with
a checkout of the `pytest-forked repository`_ ::
pip install -e .
Usage examples
---------------------
If you have tests involving C or C++ libraries you might have to deal
with tests crashing the process. For this case you may use the boxing
options::
pytest --forked
which will run each test in a subprocess and will report if a test
crashed the process. You can also combine this option with
running multiple processes via pytest-xdist to speed up the test run
and use your CPU cores::
pytest -n3 --forked
this would run 3 testing subprocesses in parallel which each
create new forked subprocesses for each test.
You can also fork for individual tests::
@pytest.mark.forked
def test_with_leaky_state():
run_some_monkey_patches()
This test will be unconditionally boxed, regardless of CLI flag.
.. _`pytest-forked repository`: https://github.com/pytest-dev/pytest-forked
|