summaryrefslogtreecommitdiff
path: root/doc/en/deprecations.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2020-08-17 18:10:27 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2020-08-19 08:14:28 -0300
commitef946d557cc7b7f030805b94c1dbae51f39fcce4 (patch)
tree9741d0c233e32c4bfe83b7180bf7476e44c2b306 /doc/en/deprecations.rst
parentb32c48ee0519f7469077ed9878bbc1d550660d78 (diff)
downloadpytest-ef946d557cc7b7f030805b94c1dbae51f39fcce4.tar.gz
Remove resultlog plugin
Diffstat (limited to 'doc/en/deprecations.rst')
-rw-r--r--doc/en/deprecations.rst18
1 files changed, 8 insertions, 10 deletions
diff --git a/doc/en/deprecations.rst b/doc/en/deprecations.rst
index 12844265d..bec321e69 100644
--- a/doc/en/deprecations.rst
+++ b/doc/en/deprecations.rst
@@ -66,10 +66,17 @@ display captured output when tests fail: ``no``, ``stdout``, ``stderr``, ``log``
+Removed Features
+----------------
+
+As stated in our :ref:`backwards-compatibility` policy, deprecated features are removed only in major releases after
+an appropriate period of deprecation has passed.
+
Result log (``--result-log``)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. deprecated:: 4.0
+.. versionremoved:: 6.0
The ``--result-log`` option produces a stream of test reports which can be
analysed at runtime, but it uses a custom format which requires users to implement their own
@@ -78,18 +85,9 @@ parser.
The `pytest-reportlog <https://github.com/pytest-dev/pytest-reportlog>`__ plugin provides a ``--report-log`` option, a more standard and extensible alternative, producing
one JSON object per-line, and should cover the same use cases. Please try it out and provide feedback.
-The plan is remove the ``--result-log`` option in pytest 6.0 if ``pytest-reportlog`` proves satisfactory
-to all users and is deemed stable. The ``pytest-reportlog`` plugin might even be merged into the core
+The ``pytest-reportlog`` plugin might even be merged into the core
at some point, depending on the plans for the plugins and number of users using it.
-
-Removed Features
-----------------
-
-As stated in our :ref:`backwards-compatibility` policy, deprecated features are removed only in major releases after
-an appropriate period of deprecation has passed.
-
-
``pytest_collect_directory`` hook
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~