Skip to content

Commit

Permalink
test:skip a bulk insert testcase temporarily (milvus-io#28619)
Browse files Browse the repository at this point in the history
skip a bulk insert test case temporarily.
It is a known issue but needs more time to solve. skip the test case is
for not blocking other PR

Signed-off-by: zhuwenxing <[email protected]>
  • Loading branch information
zhuwenxing authored Nov 22, 2023
1 parent 73f2bab commit 9fd8102
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/python_client/testcases/test_bulk_insert.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ def test_partition_key_on_json_file(self, is_row_based, auto_id, par_key_field):
@pytest.mark.parametrize("dim", [13])
@pytest.mark.parametrize("entities", [150])
@pytest.mark.parametrize("file_nums", [10])
@pytest.mark.xfail(reason="issue #28209")
@pytest.mark.skip(reason="issue #28209")
def test_partition_key_on_multi_numpy_files(
self, auto_id, dim, entities, file_nums
):
Expand Down Expand Up @@ -945,7 +945,7 @@ def test_partition_key_on_multi_numpy_files(
def test_partition_key_on_csv_file(self, auto_id, partition_key_field):
"""
collection: auto_id, customized_id
collection scheam: [pk, float_vector, int64, varchar, bool, float]
collection schema: [pk, float_vector, int64, varchar, bool, float]
Step:
1. create collection with partition key enabled
2. import data
Expand Down Expand Up @@ -1213,7 +1213,7 @@ def test_partition_csv(self, auto_id, dim, entities):
collection schema: [pk, int64, string, float_vector]
Step:
1. create collection and partition
2. bulid index and load partition
2. build index and load partition
3. import data into the partition
4. verify num entities
5. verify index status
Expand Down Expand Up @@ -1293,4 +1293,4 @@ def test_partition_csv(self, auto_id, dim, entities):
for hits in res:
ids = hits.ids
results, _ = self.collection_wrap.query(expr=f"{df.pk_field} in {ids}")
assert len(results) == len(ids)
assert len(results) == len(ids)

0 comments on commit 9fd8102

Please sign in to comment.