You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
440 B
11 lines
440 B
import pytest
|
|
|
|
@pytest.mark.thread_unsafe(reason="deprecate_cython_api is not thread-safe")
|
|
def test_cython_api_deprecation():
|
|
match = ("`scipy._lib._test_deprecation_def.foo_deprecated` "
|
|
"is deprecated, use `foo` instead!\n"
|
|
"Deprecated in Scipy 42.0.0")
|
|
with pytest.warns(DeprecationWarning, match=match):
|
|
from .. import _test_deprecation_call
|
|
assert _test_deprecation_call.call() == (1, 1)
|