@@ -281,10 +281,10 @@ def __init__(
281
281
#: defined properties of the test.
282
282
self .user_properties = list (user_properties or [])
283
283
284
- #: List of pairs ``(str, str )`` of extra information which needs to
285
- #: marshallable . Used by pytest to add captured text
286
- #: from ``stdout`` and ``stderr``, but may be used by other plugins
287
- #: to add arbitrary information to reports.
284
+ #: Tuples of str ``(heading, content )`` with extra information
285
+ #: for the test report . Used by pytest to add text captured
286
+ #: from ``stdout``, ``stderr``, and intercepted logging events. May
287
+ #: be used by other plugins to add arbitrary information to reports.
288
288
self .sections = list (sections )
289
289
290
290
#: Time it took to run just the test.
@@ -381,11 +381,10 @@ def __init__(
381
381
#: The collected items and collection nodes.
382
382
self .result = result or []
383
383
384
- #: List of pairs ``(str, str)`` of extra information which needs to
385
- #: marshallable.
386
- # Used by pytest to add captured text : from ``stdout`` and ``stderr``,
387
- # but may be used by other plugins : to add arbitrary information to
388
- # reports.
384
+ #: Tuples of str ``(heading, content)`` with extra information
385
+ #: for the test report. Used by pytest to add text captured
386
+ #: from ``stdout``, ``stderr``, and intercepted logging events. May
387
+ #: be used by other plugins to add arbitrary information to reports.
389
388
self .sections = list (sections )
390
389
391
390
self .__dict__ .update (extra )
0 commit comments