You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests/test_example.py::test_example
/Users/florimond/Developer/florimondmanca-projects/arel/venv/lib/python3.11/site-packages/starlette/concurrency.py:19: DeprecationWarning: run_until_first_complete is deprecated and will be removed in a future version.
warnings.warn(
We only support asyncio for now (see usage of asyncio.Event()). So as a first step, we could resolve the warning by bringing back what Starlette was doing before anyio...
We get a warning when running tests:
As per encode/starlette#1443, the alternative seems to be to use
anyio
:We only support
asyncio
for now (see usage ofasyncio.Event()
). So as a first step, we could resolve the warning by bringing back what Starlette was doing beforeanyio
...The text was updated successfully, but these errors were encountered: