Skip to content

Commit 8b73f58

Browse files
committed
remove ops
1 parent cb91f04 commit 8b73f58

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

pandas/tests/extension/base/__init__.py

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ class TestDtype(base.BaseDtypeTests):
6565
pass
6666

6767

68-
class TestOps(base.BaseOpsTests):
69-
pass
70-
71-
7268
class TestInterface(base.BaseInterfaceTests):
7369
@pytest.mark.skip(reason="Memory usage doesn't match")
7470
def test_memory_usage(self):

pandas/tests/extension/decimal/test_decimal.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ class TestInterface(BaseDecimal, base.BaseInterfaceTests):
107107
pass
108108

109109

110-
class TestOps(BaseDecimal, base.BaseOpsTests):
111-
pass
112-
113-
114110
class TestConstructors(BaseDecimal, base.BaseConstructorsTests):
115111

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

pandas/tests/extension/json/test_json.py

Lines changed: 0 additions & 4 deletions
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)