Skip to content

Commit 694b29c

Browse files
mroeschkeyehoshuadimarsky
authored andcommitted
TST: xfail(strict=False) flaky hashtable test (pandas-dev#46350)
1 parent 8b54fb7 commit 694b29c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pandas/tests/libs/test_hashtable.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,16 @@ def test_lookup_overflow(self, writable):
246246
(ht.Float64HashTable, ht.Float64Vector, "float64", False),
247247
(ht.Int64HashTable, ht.Int64Vector, "int64", False),
248248
(ht.Int32HashTable, ht.Int32Vector, "int32", False),
249-
(ht.UInt64HashTable, ht.UInt64Vector, "uint64", False),
249+
pytest.param(
250+
ht.UInt64HashTable,
251+
ht.UInt64Vector,
252+
"uint64",
253+
False,
254+
marks=pytest.mark.xfail(
255+
reason="Sometimes doesn't raise.",
256+
strict=False,
257+
),
258+
),
250259
],
251260
)
252261
def test_vector_resize(

0 commit comments

Comments
 (0)