mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
update version && disable http async
Signed-off-by: zw <zw@milvus.io>
This commit is contained in:
parent
e5b193a0d4
commit
6ff1197c4f
@ -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=[
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,7 +1,7 @@
|
||||
import logging
|
||||
import pytest
|
||||
|
||||
__version__ = '0.8.0'
|
||||
__version__ = '0.9.0'
|
||||
|
||||
|
||||
class TestPing:
|
||||
|
Loading…
Reference in New Issue
Block a user