提交 6ff1197c 编写于 作者: Z zw

update version && disable http async

Signed-off-by: Nzw <zw@milvus.io>
上级 e5b193a0
...@@ -678,6 +678,11 @@ class TestAddBase: ...@@ -678,6 +678,11 @@ class TestAddBase:
assert status.OK() assert status.OK()
class TestAddAsync: class TestAddAsync:
@pytest.fixture(scope="function", autouse=True)
def skip_http_check(self, args):
if args["handler"] == "HTTP":
pytest.skip("skip in http mode")
@pytest.fixture( @pytest.fixture(
scope="function", scope="function",
params=[ params=[
......
...@@ -234,6 +234,11 @@ class TestFlushBase: ...@@ -234,6 +234,11 @@ class TestFlushBase:
class TestFlushAsync: class TestFlushAsync:
@pytest.fixture(scope="function", autouse=True)
def skip_http_check(self, args):
if args["handler"] == "HTTP":
pytest.skip("skip in http mode")
""" """
****************************************************************** ******************************************************************
The following cases are used to test `flush` function The following cases are used to test `flush` function
......
...@@ -1808,6 +1808,11 @@ class TestCreateIndexParamsInvalid(object): ...@@ -1808,6 +1808,11 @@ class TestCreateIndexParamsInvalid(object):
assert result._index_type == IndexType.FLAT assert result._index_type == IndexType.FLAT
class TestIndexAsync: class TestIndexAsync:
@pytest.fixture(scope="function", autouse=True)
def skip_http_check(self, args):
if args["handler"] == "HTTP":
pytest.skip("skip in http mode")
""" """
****************************************************************** ******************************************************************
The following cases are used to test `create_index` function The following cases are used to test `create_index` function
......
import logging import logging
import pytest import pytest
__version__ = '0.8.0' __version__ = '0.9.0'
class TestPing: class TestPing:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册