mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
[skip e2e]skip not supported index type for deploy test (#24549)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
This commit is contained in:
parent
432288619c
commit
c7ec3b31db
@ -32,7 +32,10 @@ def filter_collections_by_prefix(prefix):
|
||||
res = []
|
||||
for col in col_list:
|
||||
if col.startswith(prefix):
|
||||
res.append(col)
|
||||
if any(index_name in col for index_name in all_index_types):
|
||||
res.append(col)
|
||||
else:
|
||||
logger.warning(f"collection {col} has no supported index, skip")
|
||||
logger.info(f"filtered collections with prefix {prefix}: {res}")
|
||||
return res
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user