Aleksander Petrushkin
Results
2
comments of
Aleksander Petrushkin
Also faced with this problem. It seems to me that the problem is that the reference to the database is in a separate event loop, which closes before the test...
> @Hazzari have you tried setting the loop on Motor client? > > ```python > client = AsyncIOMotorClient() > client.get_io_loop = asyncio.get_event_loop > engine = AIOEngine(motor_client=client) > ``` Thank you...