Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Properly remove log_print #7614

Merged
merged 1 commit into from Aug 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/en/changelog.rst
Expand Up @@ -212,9 +212,9 @@ Breaking Changes


- `#7224 <https://github.com/pytest-dev/pytest/issues/7224>`_: The `item.catch_log_handler` and `item.catch_log_handlers` attributes, set by the
logging plugin and never meant to be public , are no longer available.
logging plugin and never meant to be public, are no longer available.

The deprecated ``--no-print-logs`` option is removed. Use ``--show-capture`` instead.
The deprecated ``--no-print-logs`` option and ``log_print`` ini option are removed. Use ``--show-capture`` instead.


- `#7226 <https://github.com/pytest-dev/pytest/issues/7226>`_: Removed the unused ``args`` parameter from ``pytest.Function.__init__``.
Expand Down
5 changes: 3 additions & 2 deletions doc/en/deprecations.rst
Expand Up @@ -51,9 +51,10 @@ a public API and may break in the future.
.. versionremoved:: 6.0


Option ``--no-print-logs`` is removed. If you used ``--no-print-logs``, please use ``--show-capture`` instead.
The ``--no-print-logs`` option and ``log_print`` ini setting are removed. If
you used them, please use ``--show-capture`` instead.

``--show-capture`` command-line option was added in ``pytest 3.5.0`` and allows to specify how to
A ``--show-capture`` command-line option was added in ``pytest 3.5.0`` which allows to specify how to
display captured output when tests fail: ``no``, ``stdout``, ``stderr``, ``log`` or ``all`` (the default).


Expand Down
14 changes: 0 additions & 14 deletions doc/en/reference.rst
Expand Up @@ -1468,20 +1468,6 @@ passed multiple times. The expected format is ``name=value``. For example::
For more information, see :ref:`logging`.


.. confval:: log_print



If set to ``False``, will disable displaying captured logging messages for failed tests.

.. code-block:: ini
[pytest]
log_print = False
For more information, see :ref:`logging`.


.. confval:: markers

When the ``--strict-markers`` or ``--strict`` command-line arguments are used,
Expand Down