-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7796 from bluetech/changelog-cleanups
changelog: some consistency cleanups
- Loading branch information
Showing
9 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Deprecate the ``pytest.collect`` module: all its names can be imported from ``pytest`` directly. | ||
The ``pytest.collect`` module is deprecated: all its names can be imported from ``pytest`` directly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The ``pytest._fillfuncargs`` function is now deprecated. This function was kept | ||
for backward compatibility with an older plugin. | ||
|
||
It's functionality is not meant to be used directly, but if you must replace | ||
it, use `function._request._fillfixtures()` instead, though note this is not | ||
a public API and may break in the future. | ||
The ``pytest._fillfuncargs`` function is deprecated. This function was kept | ||
for backward compatibility with an older plugin. | ||
|
||
It's functionality is not meant to be used directly, but if you must replace | ||
it, use `function._request._fillfixtures()` instead, though note this is not | ||
a public API and may break in the future. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
The special ``-k '-expr'`` syntax to ``-k`` is deprecated. Use ``-k 'not expr'`` | ||
instead. | ||
|
||
The special ``-k 'expr:'`` syntax to ``-k`` is deprecated. Please open an issue | ||
if you use this and want a replacement. | ||
The special ``-k '-expr'`` syntax to ``-k`` is deprecated. Use ``-k 'not expr'`` | ||
instead. | ||
|
||
The special ``-k 'expr:'`` syntax to ``-k`` is deprecated. Please open an issue | ||
if you use this and want a replacement. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
The :func:`pytest_warning_captured` hook has been deprecated in favor of :func:`pytest_warning_recorded`, and will be removed in a future version. | ||
The :func:`pytest_warning_captured <_pytest.hookspec.pytest_warning_captured>` hook is deprecated in favor | ||
of :func:`pytest_warning_recorded <_pytest.hookspec.pytest_warning_recorded>`, and will be removed in a future version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Fix test collection when a full path without a drive letter was passed to pytest on Windows (for example ``\projects\tests\test.py`` instead of ``c:\projects\tests\pytest.py``). | ||
Fixed test collection when a full path without a drive letter was passed to pytest on Windows (for example ``\projects\tests\test.py`` instead of ``c:\projects\tests\pytest.py``). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
When collecting tests, pytest finds test classes and functions by examining the | ||
attributes of python objects (modules, classes and instances). To speed up this | ||
process, pytest now ignores builtin attributes (like ``__class__``, | ||
``__delattr__`` and ``__new__``) without consulting the ``python_classes`` and | ||
``python_functions`` configuration options and without passing them to plugins | ||
using the ``pytest_pycollect_makeitem`` hook. | ||
``__delattr__`` and ``__new__``) without consulting the :confval:`python_classes` and | ||
:confval:`python_functions` configuration options and without passing them to plugins | ||
using the :func:`pytest_pycollect_makeitem <_pytest.hookspec.pytest_pycollect_makeitem>` hook. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Fix INTERNALERROR when accessing locals / globals with faulty ``exec``. | ||
Fixed INTERNALERROR when accessing locals / globals with faulty ``exec``. |