Remove 'experimental' status from report serialization hooks
This commit is contained in:
parent
b99661b9d7
commit
09096f7436
|
@ -381,16 +381,6 @@ def pytest_runtest_logreport(report):
|
||||||
@hookspec(firstresult=True)
|
@hookspec(firstresult=True)
|
||||||
def pytest_report_to_serializable(config, report):
|
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
|
Serializes the given report object into a data structure suitable for sending
|
||||||
over the wire, e.g. converted to JSON.
|
over the wire, e.g. converted to JSON.
|
||||||
"""
|
"""
|
||||||
|
@ -399,16 +389,6 @@ def pytest_report_to_serializable(config, report):
|
||||||
@hookspec(firstresult=True)
|
@hookspec(firstresult=True)
|
||||||
def pytest_report_from_serializable(config, data):
|
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().
|
Restores a report object previously serialized with pytest_report_to_serializable().
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue