From 68b9a033a2ffdd882a7d2ab5c67bcd41ecf1063b Mon Sep 17 00:00:00 2001 From: del-zhenwu <56623710+del-zhenwu@users.noreply.github.com> Date: Thu, 30 Jul 2020 15:17:01 +0800 Subject: [PATCH] [skip ci] disable ping case when using http handler (#3064) * Update version in cases Signed-off-by: zw * update sdk in cases Signed-off-by: zw * [skip ci] disable ping case when using http handler Signed-off-by: zw Co-authored-by: zw --- tests/milvus_python_test/test_ping.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/milvus_python_test/test_ping.py b/tests/milvus_python_test/test_ping.py index 8e978186..dad69d4f 100644 --- a/tests/milvus_python_test/test_ping.py +++ b/tests/milvus_python_test/test_ping.py @@ -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 -- GitLab