Files
t6_mem0/embedchain/tests/llm/conftest.py
2024-08-02 00:45:28 +05:30

9 lines
170 B
Python

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