mirror of https://github.com/milvus-io/milvus.git
Try to fix new added nightly pipeline (#24594)
Signed-off-by: nico <cheng.yuan@zilliz.com>pull/24674/head
parent
48f2d2e534
commit
2c1c0f3ed3
|
@ -219,7 +219,7 @@ pipeline {
|
|||
MILVUS_CLUSTER_ENABLED="${clusterEnabled}" \
|
||||
TEST_TIMEOUT="${e2e_timeout_seconds}" \
|
||||
MQ_MODE="${mqMode}" \
|
||||
./ci_e2e.sh "-n 4 --tags ${tag} testcases/test_utility.py::TestUtilityUserPassword testcases/test_utility.py::TestUtilityInvalidUserPassword"
|
||||
./ci_e2e.sh "-n 6 --tags ${tag} testcases/test_utility.py::TestUtilityUserPassword testcases/test_utility.py::TestUtilityInvalidUserPassword"
|
||||
"""
|
||||
} else {
|
||||
sh """
|
||||
|
|
|
@ -140,7 +140,7 @@ class TestActionBeforeReinstall(TestDeployBase):
|
|||
check_task=CheckTasks.check_query_not_empty)
|
||||
|
||||
@pytest.mark.tags(CaseLabel.L3)
|
||||
@pytest.mark.parametrize("replica_number", [0,1,2])
|
||||
@pytest.mark.parametrize("replica_number", [0, 1, 2])
|
||||
@pytest.mark.parametrize("is_compacted", [True, False])
|
||||
@pytest.mark.parametrize("is_deleted", [True, False])
|
||||
@pytest.mark.parametrize("is_string_indexed", [True, False])
|
||||
|
@ -149,7 +149,7 @@ class TestActionBeforeReinstall(TestDeployBase):
|
|||
# @pytest.mark.parametrize("is_empty", [True, False]) # , "BIN_FLAT" (keep one is enough)
|
||||
@pytest.mark.parametrize("index_type", random.sample(dc.all_index_types, 3)) # , "BIN_FLAT"
|
||||
def test_task_all(self, index_type, is_compacted,
|
||||
segment_status, is_vector_indexed, is_string_indexed, replica_number, is_deleted, data_size):
|
||||
segment_status, is_vector_indexed, is_string_indexed, replica_number, is_deleted, data_size):
|
||||
"""
|
||||
before reinstall: create collection and insert data, load and search
|
||||
after reinstall: get collection, search, create index, load, and search
|
||||
|
@ -174,7 +174,7 @@ class TestActionBeforeReinstall(TestDeployBase):
|
|||
# insert with flush multiple times to generate multiple sealed segment
|
||||
for i in range(5):
|
||||
self.init_collection_general(insert_data=True, is_binary=is_binary, nb=data_size,
|
||||
is_flush=False, name=name)[0]
|
||||
is_flush=False, name=name)
|
||||
if is_binary:
|
||||
default_index_field = ct.default_binary_vec_field_name
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue