Skip to content

Commit a5a6385

Browse files
committed
xfail for Categorical from sparse
1 parent 6b99d71 commit a5a6385

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/arrays/categorical/test_constructors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,8 @@ def test_interval(self):
690690

691691
@pytest.mark.parametrize("sparse", [True, False])
692692
def test_from_dummies(self, sparse):
693+
if sparse:
694+
pytest.xfail("from sparse is not supported")
693695
# GH 8745
694696
raw = ["a", "a", "b", "c", "c", "a"]
695697
dummies = get_dummies(raw, sparse=sparse)

0 commit comments

Comments
 (0)