From 09096f74368a45b0d23181f3120cfe78aef9363f Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 26 Oct 2019 13:09:40 -0300 Subject: [PATCH] Remove 'experimental' status from report serialization hooks --- src/_pytest/hookspec.py | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/_pytest/hookspec.py b/src/_pytest/hookspec.py index 10a9857d7..7a21837bd 100644 --- a/src/_pytest/hookspec.py +++ b/src/_pytest/hookspec.py @@ -381,16 +381,6 @@ def pytest_runtest_logreport(report): @hookspec(firstresult=True) def pytest_report_to_serializable(config, report): """ - .. warning:: - This hook is experimental and subject to change between pytest releases, even - bug fixes. - - The intent is for this to be used by plugins maintained by the core-devs, such - as ``pytest-xdist``, ``pytest-subtests``, and as a replacement for the internal - 'resultlog' plugin. - - In the future it might become part of the public hook API. - Serializes the given report object into a data structure suitable for sending over the wire, e.g. converted to JSON. """ @@ -399,16 +389,6 @@ def pytest_report_to_serializable(config, report): @hookspec(firstresult=True) def pytest_report_from_serializable(config, data): """ - .. warning:: - This hook is experimental and subject to change between pytest releases, even - bug fixes. - - The intent is for this to be used by plugins maintained by the core-devs, such - as ``pytest-xdist``, ``pytest-subtests``, and as a replacement for the internal - 'resultlog' plugin. - - In the future it might become part of the public hook API. - Restores a report object previously serialized with pytest_report_to_serializable(). """