Skip to content

Commit c61ed8e

Browse files
ihnortonkounelisagis
authored andcommitted
xfail part of test_sparse_string_domain on legacy reader path
1 parent ebdeed0 commit c61ed8e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tiledb/tests/test_libtiledb.py

+6
Original file line numberDiff line numberDiff line change
@@ -2279,6 +2279,12 @@ def test_sparse_mixed_domain_uint_float64(self, fx_sparse_cell_order):
22792279
def test_sparse_string_domain(
22802280
self, coords, expected_ned, allows_duplicates, sparse_cell_order
22812281
):
2282+
if sparse_cell_order in ("hilbert", "row-major") and allows_duplicates == True:
2283+
if tiledb.libtiledb.version() < (2, 8):
2284+
pytest.xfail(
2285+
"Skipping known bug with legacy reader and hilbert or row-major layout"
2286+
)
2287+
22822288
path = self.path("sparse_string_domain")
22832289
dom = tiledb.Domain(tiledb.Dim(name="d", domain=(None, None), dtype=np.bytes_))
22842290
att = tiledb.Attr(name="a", dtype=np.int64)

0 commit comments

Comments
 (0)