Hello,
> pytest.PytestDeprecationWarning: Overriding the "event_loop_policy" fixture
> is deprecated and will be removed in a future version of pytest-asyncio. Use
> the "pytest_asyncio_loop_factories" hook to customize event loop creation.
This error was already reported by upstream.
* Use asyncio.set_event_loop_policy instead of event_loop_policy
https://jira.mongodb.org/browse/PYTHON-5842
And fixed by upstream.
* PYTHON-5842 replace event_loop_policy #2821
https://github.com/mongodb/mongo-python-driver/pull/2821
--
YOKOTA Hiroshi