mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 18:18:30 +08:00
13 lines
317 B
Python
13 lines
317 B
Python
import pytest
|
|
from base.ClientRequest import ApiReq
|
|
from utils.util_log import my_log as log
|
|
from common.common_type import *
|
|
|
|
|
|
class TestPartition(ApiReq):
|
|
""" Test case of partition interface """
|
|
|
|
@pytest.mark.tags(CaseLabel.L3)
|
|
def test_case(self):
|
|
log.info("Test case of partition interface")
|