Skip to content

Commit 3ff2221

Browse files
committed
xfail value_counts tests
Pandas is deferring that till later.
1 parent 3b1c404 commit 3ff2221

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cyberpandas/test_interface.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,7 @@ class TestMissing(base.BaseMissingTests):
8080

8181

8282
class TestMethods(base.BaseMethodsTests):
83-
pass
83+
@pytest.mark.parametrize('dropna', [True, False])
84+
@pytest.mark.xfail(reason='upstream')
85+
def test_value_counts(data, dropna):
86+
pass

cyberpandas/test_ip.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ def test_ops(tup):
149149
tm.assert_numpy_array_equal(r1, r2)
150150

151151

152+
@pytest.mark.xfail(reason='upstream')
152153
def test_value_counts():
153154
x = ip.IPArray([0, 0, 1])
154155
result = x.value_counts()

0 commit comments

Comments
 (0)