mirror of https://github.com/milvus-io/milvus.git
[skip ci] disable ping case when using http handler (#3064)
* Update version in cases Signed-off-by: zw <zw@milvus.io> * update sdk in cases Signed-off-by: zw <zw@milvus.io> * [skip ci] disable ping case when using http handler Signed-off-by: zw <zw@milvus.io> Co-authored-by: zw <zw@milvus.io>pull/3074/head
parent
845cf5000a
commit
68b9a033a2
|
@ -55,6 +55,11 @@ class TestPing:
|
|||
|
||||
|
||||
class TestPingWithTimeout:
|
||||
@pytest.fixture(scope="function", autouse=True)
|
||||
def skip_http_check(self, args):
|
||||
if args["handler"] == "HTTP":
|
||||
pytest.skip("skip in http mode")
|
||||
|
||||
def test_server_version_legal_timeout(self, connect):
|
||||
'''
|
||||
target: test get the server version with legal timeout
|
||||
|
|
Loading…
Reference in New Issue