Decorators for pytest tests that should issue exceptions or warnings
Project description
pytest-error
A decorator for testing exceptions with pytest.
About
The pytest-error package provides an @error decorator to validate pytest tests that should raise an exception. The decorator is built on the pytest.raises context manager, and further extends its functionality to allow validation of error messages using strings. (pytest.raises requires regular expressions to validate error messages).
Some motivations for using the decorator include:
- Testing error messages without needing regular expressions
- Adding a marker to quickly identify tests that examine error states
- 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_error import error
@error(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."
)
@error((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):
@error(RuntimeError)
def test():
raise RuntimeError(
"Because @error 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:
@error(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'
)
@error(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:
@error(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'
)
@error((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:
@error(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}'
)
Installation
Requires: Python 3.10+, pytest 8.4+
pip install pytest-error
Documentation
You can find more detailed examples, a user guide, and a comprehensive API at the project documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_issues-1.0.0.dev0.tar.gz.
File metadata
- Download URL: pytest_issues-1.0.0.dev0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c64a75ae34ab91d93588d18f27bfb05f88bb9bcdd0de0c98f8f65c94a737a75
|
|
| MD5 |
526f20c18f6193fcbe2e2bf55c171428
|
|
| BLAKE2b-256 |
62c899c3fa2d245229da1716d0e84bcce3f2cfa6714bc209b3b08be44362d77e
|
File details
Details for the file pytest_issues-1.0.0.dev0-py3-none-any.whl.
File metadata
- Download URL: pytest_issues-1.0.0.dev0-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0453bd26fd7b77bbe79f585b9f61e5b259030878bfa77a4c7a21ace607cde34
|
|
| MD5 |
fff4e3e85a5c8937b3de16dd398c7ef3
|
|
| BLAKE2b-256 |
255012408d6c4d2e4582912f3c0ce016db6cfdfa44bc28bb23c8ed9f42f46e3f
|