milvus/tests/python_client/testcases/test_compaction.py
ThreadDao 7a646a5f45
[skip ci] Add skipped compact case (#11153)
Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
2021-11-03 14:58:52 +08:00

32 lines
796 B
Python

import pytest
from base.client_base import TestcaseBase
from common.common_type import CaseLabel
@pytest.mark.skip(reason="Waiting for development")
class TestCompactionParams(TestcaseBase):
@pytest.mark.tags(CaseLabel.L1)
def test_compact_without_connection(self):
"""
target: test compact without connection
method: compact after remove connection
expected: raise exception
"""
pass
@pytest.mark.tags(CaseLabel.L2)
def test_compact_empty_collection(self):
"""
target: test compact an empty collection
method: compact an empty collection
expected: No exception
"""
pass
@pytest.mark.skip(reason="Waiting for development")
class TestCompactionOperation(TestcaseBase):
pass