Add `FutureWarning` to `deprecated_call`

This commit is contained in:
Chris Mahoney 2023-09-18 11:23:34 +10:00
parent 8b7f94f145
commit 303b213c1a
3 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1 @@
Add ``FutureWarning`` to ``deprecated_call``.

View File

@ -56,7 +56,7 @@ def deprecated_call( # noqa: F811
def deprecated_call( # noqa: F811 def deprecated_call( # noqa: F811
func: Optional[Callable[..., Any]] = None, *args: Any, **kwargs: Any func: Optional[Callable[..., Any]] = None, *args: Any, **kwargs: Any
) -> Union["WarningsRecorder", Any]: ) -> Union["WarningsRecorder", Any]:
"""Assert that code produces a ``DeprecationWarning`` or ``PendingDeprecationWarning``. """Assert that code produces a ``DeprecationWarning`` or ``PendingDeprecationWarning`` or ``FutureWarning``.
This function can be used as a context manager:: This function can be used as a context manager::
@ -82,7 +82,7 @@ def deprecated_call( # noqa: F811
__tracebackhide__ = True __tracebackhide__ = True
if func is not None: if func is not None:
args = (func,) + args args = (func,) + args
return warns((DeprecationWarning, PendingDeprecationWarning), *args, **kwargs) return warns((DeprecationWarning, PendingDeprecationWarning, FutureWarning), *args, **kwargs)
@overload @overload

View File

@ -192,7 +192,7 @@ class TestDeprecatedCall:
f() f()
@pytest.mark.parametrize( @pytest.mark.parametrize(
"warning_type", [PendingDeprecationWarning, DeprecationWarning] "warning_type", [PendingDeprecationWarning, DeprecationWarning,FutureWarning]
) )
@pytest.mark.parametrize("mode", ["context_manager", "call"]) @pytest.mark.parametrize("mode", ["context_manager", "call"])
@pytest.mark.parametrize("call_f_first", [True, False]) @pytest.mark.parametrize("call_f_first", [True, False])
@ -221,7 +221,6 @@ class TestDeprecatedCall:
UserWarning, UserWarning,
SyntaxWarning, SyntaxWarning,
RuntimeWarning, RuntimeWarning,
FutureWarning,
ImportWarning, ImportWarning,
UnicodeWarning, UnicodeWarning,
] ]