Os testes envolvendo o postgres
Se executarmos os testes, eles vão continuar passando, pois os dados estão fixos na fixture:
@pytest_asyncio.fixture
async def session():
engine = create_async_engine(
'sqlite:///:memory:',
connect_args={'check_same_thread': False},
poolclass=StaticPool,
)