Skip to content

Commit 0380143

Browse files
committed
Silence a warning specific to Python 3.14
1 parent 662cd9d commit 0380143

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

cheroot/test/test_ssl.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,12 @@ def test_ssl_adapters( # pylint: disable=too-many-positional-arguments
320320
assert resp.text == 'Hello world!'
321321

322322

323+
@pytest.mark.filterwarnings(
324+
'ignore:'
325+
'Exception ignored while calling deallocator.*OSError.*'
326+
' [Errno 9] Bad file descriptor.*:'
327+
'pytest.PytestUnraisableExceptionWarning',
328+
)
323329
@pytest.mark.parametrize( # noqa: C901 # FIXME
324330
'adapter_type',
325331
(

0 commit comments

Comments
 (0)