pytest-threadleak

Detect tests leaking threads

Downloads
1.5K
Stars
10
Committers
3

.. SPDX-FileCopyrightText: Nir Soffer [email protected] .. .. SPDX-License-Identifier: MIT

=================
pytest-threadleak

.. image:: https://img.shields.io/pypi/v/pytest-threadleak.svg :target: https://pypi.python.org/pypi/pytest-threadleak :alt: Current version .. image:: https://img.shields.io/pypi/pyversions/pytest-threadleak :target: https://pypi.python.org/pypi/pytest-threadleak :alt: Supports Python 3.12, 3.11, 3.10, 3.9, 3.8 .. image:: https://img.shields.io/pypi/dm/pytest-threadleak :target: https://pypi.python.org/pypi/pytest-threadleak :alt: Downloads per month .. image:: https://github.com/nirs/pytest-threadleak/actions/workflows/ci.yml/badge.svg :target: https://github.com/nirs/pytest-threadleak/actions/workflows/ci.yml :alt: Tests status .. image:: https://img.shields.io/pypi/l/pytest-threadleak :target: https://pypi.python.org/pypi/pytest-threadleak :alt: MIT license

Detects tests leaking threads

Installation

You can install "pytest-threadleak" via pip_ from PyPI_:

.. code-block:: bash

$ pip install pytest-threadleak

Usage

The threadleak pytest plugin will fail leaking threads. This can be an issue in the test, or in the tested code.

Here is an example leaking test:

.. code-block:: python

# leak_test.py
import threading
import time

def test_leak():
    threading.Thread(target=time.sleep, args=(1,)).start()

Here is an example run with thread leak plugin enabled:

.. code-block:: bash

$ pytest --threadleak leak_test.py
...
leak_test.py::test_leak FAILED
...
>   ???
E   Failed: Test leaked [<Thread(Thread-1, started 139762716391168)>]

If you want to enable thread leak by default, you can enable it in your pytest.ini or tox.ini:

.. code-block:: ini

[pytest]
threadleak = True

If you want to enable thread leak on a per test/module basis, you can use the threadleak pytest marker:

To enable it for a single test:

.. code-block:: python

@pytest.mark.threadleak
def test_leak():
   ...

To disable it for a single test:

.. code-block:: python

@pytest.mark.threadleak(enabled=False)
def test_leak():
   ...

For an entire test module:

.. code-block:: python

import pytest

pytestmark = pytest.mark.threadleak(enabled=False)

If you want to exclude some threads from the leak check, you can specify a regex to match excluded thread names:

.. code-block:: ini

[pytest]
threadleak = True
threadleak_exclude = pool/\d+

If you want to ignore leaked daemon threads, specify threadleak_exclude_daemons (defaults to False):

.. code-block:: ini

[pytest]
threadleak = True
threadleak_exclude_daemons = True

The exclude and exclude_daemons options can also be used in module marker, class marker or function markers, to enable the option only for certain moudle, test class, or test function:

.. code-block:: python

@pytest.mark.threadleak(exclude=r"pool/\d+")
def test_exclude_leaked_threads_by_regrex():
    ...

@pytest.mark.threadleak(exclude_daemons=True)
def test_exclude_leaked_daemon_threads():
    ...

def test_no_leaked_threads_here():
    ...

In this example, thread "pool/42" is allowed to leak in the first test, and all daemon threads are allowed to leak in the second test. No threads area allowed to leak in the last test.

Contributing

Running the tests:

.. code-block:: bash

$ tox

License

Distributed under the terms of the MIT_ license, "pytest-threadleak" is free and open source software

Credits

This Pytest_ plugin was generated with Cookiecutter_ along with @hackebrot's Cookiecutter-pytest-plugin template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _@hackebrot: https://github.com/hackebrot .. _MIT: http://opensource.org/licenses/MIT .. _cookiecutter-pytest-plugin: https://github.com/pytest-dev/cookiecutter-pytest-plugin .. _pytest: https://github.com/pytest-dev/pytest .. _tox: https://tox.readthedocs.io/en/latest/ .. _pip: https://pypi.python.org/pypi/pip/ .. _PyPI: https://pypi.python.org/pypi