Skip to content

Commit 6483c67

Browse files
committed
remove ops
1 parent 9303250 commit 6483c67

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

pandas/tests/extension/base/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class TestMyDtype(BaseDtypeTests):
4545
from .dtype import BaseDtypeTests # noqa
4646
from .getitem import BaseGetitemTests # noqa
4747
from .groupby import BaseGroupbyTests # noqa
48-
from .ops import BaseOpsTests # noqa
4948
from .interface import BaseInterfaceTests # noqa
5049
from .methods import BaseMethodsTests # noqa
5150
from .missing import BaseMissingTests # noqa

pandas/tests/extension/category/test_categorical.py

-4
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ class TestDtype(base.BaseDtypeTests):
5555
pass
5656

5757

58-
class TestOps(base.BaseOpsTests):
59-
pass
60-
61-
6258
class TestInterface(base.BaseInterfaceTests):
6359
@pytest.mark.skip(reason="Memory usage doesn't match")
6460
def test_memory_usage(self):

pandas/tests/extension/decimal/test_decimal.py

-4
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@ class TestInterface(BaseDecimal, base.BaseInterfaceTests):
9999
pass
100100

101101

102-
class TestOps(BaseDecimal, base.BaseOpsTests):
103-
pass
104-
105-
106102
class TestConstructors(BaseDecimal, base.BaseConstructorsTests):
107103

108104
@pytest.mark.xfail(reason="not implemented constructor from dtype")

pandas/tests/extension/json/test_json.py

-4
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ def test_custom_asserts(self):
129129
self.assert_frame_equal(a.to_frame(), b.to_frame())
130130

131131

132-
class TestOps(BaseJSON, base.BaseOpsTests):
133-
pass
134-
135-
136132
class TestConstructors(BaseJSON, base.BaseConstructorsTests):
137133

138134
@pytest.mark.xfail(reason="not implemented constructor from dtype")

0 commit comments

Comments
 (0)