From 4757c7a03741fbb35909a579eaf5c8278ca7eea9 Mon Sep 17 00:00:00 2001 From: yanliang567 <82361606+yanliang567@users.noreply.github.com> Date: Mon, 8 Nov 2021 10:19:13 +0800 Subject: [PATCH] [skip ci]Update simd test comments (#11360) Signed-off-by: yanliang567 --- tests/python_client/customize/test_simd_compat.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/python_client/customize/test_simd_compat.py b/tests/python_client/customize/test_simd_compat.py index 2b155aa9cd..9538ec3d36 100644 --- a/tests/python_client/customize/test_simd_compat.py +++ b/tests/python_client/customize/test_simd_compat.py @@ -45,15 +45,15 @@ class TestSimdCompatibility: for name in self.release_names: milvus_op.uninstall(name, namespace) - """ - steps - 1. [test_milvus_install]: set up milvus with customized simd configured - 2. [test_simd_compat_e2e]: verify milvus is working well - 4. [test_milvus_cleanup]: clear the env "avx", "avx2", "avx512" - """ @pytest.mark.tags(CaseLabel.L3) @pytest.mark.parametrize('simd', supported_simd_types) def test_simd_compat_e2e(self, simd): + """ + steps + 1. [test_milvus_install]: set up milvus with customized simd configured + 2. [test_simd_compat_e2e]: verify milvus is working well + 4. [test_milvus_cleanup]: delete milvus instances in teardown + """ log.info(f"start to install milvus with simd {simd}") release_name, host, port = _install_milvus(simd) self.release_names.append(release_name)