From 2d86057603078d405e4d3daeb0736742c5b92f25 Mon Sep 17 00:00:00 2001 From: zhenwu Date: Thu, 7 Nov 2019 13:55:10 +0800 Subject: [PATCH 1/2] Update test case: version to 0.5.3 --- tests/milvus-java-test/pom.xml | 4 ++-- tests/milvus_python_test/test_mix.py | 2 +- tests/milvus_python_test/test_ping.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/milvus-java-test/pom.xml b/tests/milvus-java-test/pom.xml index 4da715e292..7006bf159f 100644 --- a/tests/milvus-java-test/pom.xml +++ b/tests/milvus-java-test/pom.xml @@ -99,7 +99,7 @@ io.milvus milvus-sdk-java - 0.2.0-SNAPSHOT + 0.2.2 @@ -134,4 +134,4 @@ - \ No newline at end of file + diff --git a/tests/milvus_python_test/test_mix.py b/tests/milvus_python_test/test_mix.py index f099db5c31..fa6d57e408 100644 --- a/tests/milvus_python_test/test_mix.py +++ b/tests/milvus_python_test/test_mix.py @@ -180,4 +180,4 @@ def check_result(result, id): if len(result) >= 5: return id in [result[0].id, result[1].id, result[2].id, result[3].id, result[4].id] else: - return id in (i.id for i in result) \ No newline at end of file + return id in (i.id for i in result) diff --git a/tests/milvus_python_test/test_ping.py b/tests/milvus_python_test/test_ping.py index d63ab93f11..3f79f45298 100644 --- a/tests/milvus_python_test/test_ping.py +++ b/tests/milvus_python_test/test_ping.py @@ -1,7 +1,7 @@ import logging import pytest -__version__ = '0.5.1' +__version__ = '0.5.3' class TestPing: From 5d9826e3de33421d0c8e49c7cd605fdb56b53572 Mon Sep 17 00:00:00 2001 From: zhenwu Date: Thu, 7 Nov 2019 14:00:49 +0800 Subject: [PATCH 2/2] Update mix case level --- tests/milvus_python_test/test_mix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/milvus_python_test/test_mix.py b/tests/milvus_python_test/test_mix.py index fa6d57e408..84afb52975 100644 --- a/tests/milvus_python_test/test_mix.py +++ b/tests/milvus_python_test/test_mix.py @@ -26,6 +26,7 @@ index_params = {'index_type': IndexType.IVFLAT, 'nlist': 16384} class TestMixBase: # TODO: enable + @pytest.mark.level(2) def test_search_during_createIndex(self, args): loops = 100000 table = gen_unique_str()