Skip to content

Commit cf2fb6f

Browse files
committed
Implement UnaryOps tests
1 parent 8f71766 commit cf2fb6f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/tests/extension/list/test_list.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class TestListArray(
8080
BaseMissingTests,
8181
BaseArithmeticOpsTests,
8282
BaseComparisonOpsTests,
83-
# BaseUnaryOpsTests,
83+
BaseUnaryOpsTests,
8484
BasePrintingTests,
8585
BaseReduceTests,
8686
# BaseReshapingTests,
@@ -156,6 +156,9 @@ def test_compare_array(self, data, comparison_op):
156156

157157
super().test_compare_array(data, comparison_op)
158158

159+
def test_invert(self, data):
160+
pytest.skip("ListArray does not implement invert")
161+
159162

160163
def test_to_csv(data):
161164
# https://github.com/pandas-dev/pandas/issues/28840

0 commit comments

Comments
 (0)