update version && disable http async

Signed-off-by: zw <zw@milvus.io>
This commit is contained in:
zw 2020-05-11 13:56:08 +08:00
parent e5b193a0d4
commit 6ff1197c4f
4 changed files with 16 additions and 1 deletions

View File

@ -678,6 +678,11 @@ class TestAddBase:
assert status.OK()
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(
scope="function",
params=[

View File

@ -234,6 +234,11 @@ class TestFlushBase:
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

View File

@ -1808,6 +1808,11 @@ class TestCreateIndexParamsInvalid(object):
assert result._index_type == IndexType.FLAT
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

View File

@ -1,7 +1,7 @@
import logging
import pytest
__version__ = '0.8.0'
__version__ = '0.9.0'
class TestPing: