Skip to main content

Decorators for pytest tests that should issue exceptions or warnings

Project description

pytest-issues

Documentation Python PyPI Build Status Coverage License

A decorator for testing exceptions with pytest.

About

The pytest-issues package provides decorators to ensure that pytest tests raise expected exceptions and warnings. Use the @raises decorator to check a test raises an expected exception, and @warns to check a test issues an expected warning. The decorators are built on the pytest.raises and pytest.warns context managers, and extends their functionality to allow validation of error messages using strings. (The baseline context managers require regular expressions to validate error messages).

Some motivations for the package include:

  1. Testing error messages without needing regular expressions
  2. Adding a marker to quickly identify tests that examine error states
  3. Keeping the action code for exception tests at the same indent level as other tests

Examples

Require a test to raise an expected exception:

from pytest_issues import raises

@raises(ValueError, "some message A", "another message B", "final message C")
def test():
    raise ValueError(
        "This test must raise an ValueError whose error message "
        "must include some message A, another message B, and a final message C."
    )

@raises((TypeError, ValueError), 'some message')
def test_multiple_types():
    raise TypeError(
        "This test must raise either a TypeError or ValueError, "
        "and the error must include some message".
    )

Auto-fail and display the raised message in the pytest results (useful for examining error messages when writing tests):

@raises(RuntimeError)
def test():
    raise RuntimeError(
        "Because @raises does not include any error message strings, "
        "this test will fail and will display the raised error message "
        "in the pytest output. Refer to the documentation for ways to "
        "disable auto-failing."
    )

Plays well with the pytest ecosystem:

@raises(TypeError, 'some error message')
@pytest.mark.parametrize('parameter', (1,2,3))
def test_with_parameters(parameter):
    raise TypeError(
        'This test uses parameters, and should raise a TypeError with some error message'
    )

@raises(ValueError, 'some error message')
def test_with_fixtures(fixtureA, fixtureB):
    raise ValueError(
        'This test uses fixtures, and should raise a ValueError with some error message'
    )

class TestClass:
    @raises(RuntimeError, 'some error message')
    def test_that_is_a_method(cls):
        raise RuntimeError(
            'This test is a class method, and should raise a RuntimeError with some error message'
        )

@raises((ValueError, TypeError), 'some message', check=some_callable, match=some_regex)
def test_raises_api():
    raise ValueError(
        "This exception raised by this test must satisfy the `check` and `match` args "
        "from the pytest.raises API, and must raise a ValueError with some message."
    )

Inject parameters and fixtures into expected error messages:

@raises(ValueError, 'message including {param1} and {fixture2}')
@pytest.mark.parametrize(
    'param1', ('some message A', 'some message B')
)
def test(param1, fixture1, fixture2):
    raise ValueError(
        f'This test should raise an exception that has a message '
        f'including {param1} and {fixture2}'
    )

Check for warning messages:

import warnings
from pytest_issues import warns

@warns(RuntimeWarning, 'some warning message')
def test():
    warnings.warn(
        "This test must issue a RuntimeWarning that includes "
        "some warning message."
    )

Documentation

You can find more detailed examples, a user guide, and a comprehensive API at the project documentation.

Installation

Requires: Python 3.11+, pytest 8.4+

pip install pytest-issues

Contributing / Feedback

We welcome contributions and feedback! To ask a question, suggest a feature, or report a bug, please open a new thread on our Issues tracker. If you plan to contribute code, please read the contribution guide in the docs.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_issues-1.0.0.dev1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_issues-1.0.0.dev1-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest_issues-1.0.0.dev1.tar.gz.

File metadata

  • Download URL: pytest_issues-1.0.0.dev1.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pytest_issues-1.0.0.dev1.tar.gz
Algorithm Hash digest
SHA256 e03bf0308ecd15b7a8a1f29c1113a50834dc765d5e30669a7334fba2fdfb10a3
MD5 e452b65feba766da6bb48e26c2513b3e
BLAKE2b-256 e4a92d7e18267e4ffddca76275ff1ea44f006697dd52973cc0e07b3299534152

See more details on using hashes here.

File details

Details for the file pytest_issues-1.0.0.dev1-py3-none-any.whl.

File metadata

  • Download URL: pytest_issues-1.0.0.dev1-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pytest_issues-1.0.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 93a851d6267b34ace0078ce27961e3555834eb6b4280d326d5c343a445fc566e
MD5 6d66839f8b658f5f2ae71c5888ba2a8f
BLAKE2b-256 57e42bc16fb6493fa4e56128d5d114a6cfee4d140f8b5a41b793c19743fc3427

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page