diff --git a/changelog/5584.breaking.rst b/changelog/5584.breaking.rst deleted file mode 100644 index 990d04cb1..000000000 --- a/changelog/5584.breaking.rst +++ /dev/null @@ -1,23 +0,0 @@ -**PytestDeprecationWarning are now errors by default.** - -Following our plan to remove deprecated features with as little disruption as -possible, all warnings of type ``PytestDeprecationWarning`` now generate errors -instead of warning messages. - -**The affected features will be effectively removed in pytest 6.1**, so please consult the -`Deprecations and Removals `__ -section in the docs for directions on how to update existing code. - -In the pytest ``6.0.X`` series, it is possible to change the errors back into warnings as a -stopgap measure by adding this to your ``pytest.ini`` file: - -.. code-block:: ini - - [pytest] - filterwarnings = - ignore::pytest.PytestDeprecationWarning - -But this will stop working when pytest ``6.1`` is released. - -**If you have concerns** about the removal of a specific feature, please add a -comment to `#5584 `__. diff --git a/changelog/7389.trivial.rst b/changelog/7389.trivial.rst deleted file mode 100644 index 00cfe92bc..000000000 --- a/changelog/7389.trivial.rst +++ /dev/null @@ -1 +0,0 @@ -Fixture scope ``package`` is no longer considered experimental. diff --git a/changelog/7392.bugfix.rst b/changelog/7392.bugfix.rst deleted file mode 100644 index 48cd949fa..000000000 --- a/changelog/7392.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix the reported location of tests skipped with ``@pytest.mark.skip`` when ``--runxfail`` is used. diff --git a/changelog/7422.doc.rst b/changelog/7422.doc.rst deleted file mode 100644 index 105fb4be6..000000000 --- a/changelog/7422.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Clarified when the ``usefixtures`` mark can apply fixtures to test. diff --git a/changelog/7441.doc.rst b/changelog/7441.doc.rst deleted file mode 100644 index d7c770e99..000000000 --- a/changelog/7441.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Add a note about ``-q`` option used in getting started guide. diff --git a/changelog/7464.feature.rst b/changelog/7464.feature.rst deleted file mode 100644 index 8b27ee964..000000000 --- a/changelog/7464.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for :envvar:`NO_COLOR` and :envvar:`FORCE_COLOR` environment variables to control colored output. diff --git a/changelog/7467.improvement.rst b/changelog/7467.improvement.rst deleted file mode 100644 index b7cf3b4d8..000000000 --- a/changelog/7467.improvement.rst +++ /dev/null @@ -1 +0,0 @@ -``--log-file`` CLI option and ``log_file`` ini marker now create subdirectories if needed. diff --git a/changelog/7472.breaking.rst b/changelog/7472.breaking.rst deleted file mode 100644 index b76874e37..000000000 --- a/changelog/7472.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -The ``exec_()`` and ``is_true()`` methods of ``_pytest._code.Frame`` have been removed. diff --git a/changelog/7489.improvement.rst b/changelog/7489.improvement.rst deleted file mode 100644 index 218342f2d..000000000 --- a/changelog/7489.improvement.rst +++ /dev/null @@ -1 +0,0 @@ -The :func:`pytest.raises` function has a clearer error message when ``match`` equals the obtained string but is not a regex match. In this case it is suggested to escape the regex. diff --git a/changelog/7491.bugfix.rst b/changelog/7491.bugfix.rst deleted file mode 100644 index 5b00a5713..000000000 --- a/changelog/7491.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -:fixture:`tmpdir` and :fixture:`tmp_path` no longer raise an error if the lock to check for -stale temporary directories is not accessible. diff --git a/changelog/7517.bugfix.rst b/changelog/7517.bugfix.rst deleted file mode 100644 index 2d062dc1e..000000000 --- a/changelog/7517.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Preserve line endings when captured via ``capfd``. diff --git a/changelog/7534.bugfix.rst b/changelog/7534.bugfix.rst deleted file mode 100644 index 7c1f31360..000000000 --- a/changelog/7534.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Restored the previous formatting of ``TracebackEntry.__str__`` which was changed by accident.