We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec785d commit 88d1093Copy full SHA for 88d1093
tox.ini
@@ -12,7 +12,9 @@ env_list =
12
mypy
13
14
[testenv]
15
-commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m unittest {posargs}
+; Filter out ResourceWarnings to work around https://github.com/python/cpython/issues/90476.
16
+; This can be removed when dropping Python < 3.11.
17
+commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -W ignore:"unclosed transport":ResourceWarning:asyncio.sslproto -m unittest {posargs}
18
pass_env = WEBSOCKETS_*
19
20
[testenv:coverage]
0 commit comments