mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 18:50:33 +00:00
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# ruff: noqa: E402
|
|
import pytest
|
|
|
|
# Rewrite assert statements for test suite so that implementations can
|
|
# see the full error message from failed asserts.
|
|
# https://docs.pytest.org/en/7.1.x/how-to/writing_plugins.html#assertion-rewriting
|
|
modules = [
|
|
"base_store",
|
|
"cache",
|
|
"chat_models",
|
|
"vectorstores",
|
|
"embeddings",
|
|
"tools",
|
|
]
|
|
|
|
for module in modules:
|
|
pytest.register_assert_rewrite(f"langchain_tests.integration_tests.{module}")
|
|
|
|
from .base_store import BaseStoreAsyncTests, BaseStoreSyncTests
|
|
from .cache import AsyncCacheTestSuite, SyncCacheTestSuite
|
|
from .chat_models import ChatModelIntegrationTests
|
|
from .embeddings import EmbeddingsIntegrationTests
|
|
from .tools import ToolsIntegrationTests
|
|
from .vectorstores import AsyncReadWriteTestSuite, ReadWriteTestSuite
|
|
|
|
__all__ = [
|
|
"ChatModelIntegrationTests",
|
|
"EmbeddingsIntegrationTests",
|
|
"ToolsIntegrationTests",
|
|
"BaseStoreAsyncTests",
|
|
"BaseStoreSyncTests",
|
|
"AsyncCacheTestSuite",
|
|
"SyncCacheTestSuite",
|
|
"AsyncReadWriteTestSuite",
|
|
"ReadWriteTestSuite",
|
|
]
|