We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1c404 commit 3ff2221Copy full SHA for 3ff2221
cyberpandas/test_interface.py
@@ -80,4 +80,7 @@ class TestMissing(base.BaseMissingTests):
80
81
82
class TestMethods(base.BaseMethodsTests):
83
- pass
+ @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
@@ -149,6 +149,7 @@ def test_ops(tup):
149
tm.assert_numpy_array_equal(r1, r2)
150
151
152
+@pytest.mark.xfail(reason='upstream')
153
def test_value_counts():
154
x = ip.IPArray([0, 0, 1])
155
result = x.value_counts()
0 commit comments