chore: skip warning messages when pytest auto-collecting the vdb test class by removing Test prefix (#3906)

This commit is contained in:
Bowen Liang
2024-04-27 16:36:09 +08:00
committed by GitHub
parent 43a5ba9415
commit 661b30784e
4 changed files with 10 additions and 10 deletions

View File

@@ -1,12 +1,12 @@
from core.rag.datasource.vdb.milvus.milvus_vector import MilvusConfig, MilvusVector
from tests.integration_tests.vdb.test_vector_store import (
AbstractTestVector,
AbstractVectorTest,
get_example_text,
setup_mock_redis,
)
class TestMilvusVector(AbstractTestVector):
class MilvusVectorTest(AbstractVectorTest):
def __init__(self):
super().__init__()
self.vector = MilvusVector(
@@ -33,4 +33,4 @@ class TestMilvusVector(AbstractTestVector):
def test_milvus_vector(setup_mock_redis):
TestMilvusVector().run_all_tests()
MilvusVectorTest().run_all_tests()