summaryrefslogtreecommitdiff
path: root/doc/en/deprecations.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2019-11-14 18:26:49 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2019-11-14 19:47:26 -0300
commitd2ea9e2db58dfb6c5a3c2981bfd062369e51fbf3 (patch)
tree0292ae61efb3c94ba855cade4c55adcc3e37e689 /doc/en/deprecations.rst
parent99f487864caf2a4a1d75a3d322304e7b3b03d01b (diff)
downloadpytest-d2ea9e2db58dfb6c5a3c2981bfd062369e51fbf3.tar.gz
Remove report_log in favor of pytest-reportlog
Fix #6180
Diffstat (limited to 'doc/en/deprecations.rst')
-rw-r--r--doc/en/deprecations.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/en/deprecations.rst b/doc/en/deprecations.rst
index 34a05e1e6..748d3ac65 100644
--- a/doc/en/deprecations.rst
+++ b/doc/en/deprecations.rst
@@ -64,11 +64,12 @@ 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
parser.
-The :ref:`--report-log <report_log>` option provides a more standard and extensible alternative, producing
+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 after ``--result-log`` proves satisfactory
-to all users and is deemed stable.
+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
+at some point, depending on the plans for the plugins and number of users using it.
Removed Features