Tests freezing due to TypeError in uvicorn #1446
Unanswered
carlsmedstad
asked this question in
Q&A
Replies: 1 comment
-
This issue is probably mine, but I don't understand why this does not happen in my own test runs. Thanks, I'll investigate. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey, Arch Linux maintainer here 👋
The test suite freezes when ran in our package build process:
$ test-env/bin/python -m pytest -v ========================================= test session starts ========================================= platform linux -- Python 3.13.2, pytest-8.3.5, pluggy-1.5.0 -- /home/carsme/repos/gitlab.archlinux.org/archlinux/packaging/packages/python-socketio/src/python-socketio-5.12.1/test-env/bin/python cachedir: .pytest_cache rootdir: /home/carsme/repos/gitlab.archlinux.org/archlinux/packaging/packages/python-socketio/src/python-socketio-5.12.1 configfile: pyproject.toml plugins: asyncio-0.25.1 asyncio: mode=Mode.AUTO, asyncio_default_fixture_loop_scope=session collected 598 items tests/async/test_admin.py::TestAsyncAdmin::test_missing_auth PASSED [ 0%] tests/async/test_admin.py::TestAsyncAdmin::test_admin_connect_with_no_auth
Enabling output in pytest with
-s
, shows an infinite stream of the these errors:Applying the following patch fixes the issue:
Not sure if the issue is in this socketio (5.12.1) or in uvicorn (0.34.0).
Input appreciated!
Beta Was this translation helpful? Give feedback.
All reactions