Files
t6_mem0/embedchain/tests/llm/conftest.py
2024-09-07 22:39:28 +05:30

11 lines
172 B
Python

from unittest import mock
import pytest
@pytest.fixture(autouse=True)
def mock_alembic_command_upgrade():
with mock.patch("alembic.command.upgrade"):
yield