Skip to content

Commit 9fd8b08

Browse files
committed
Amend after review
1 parent 269661d commit 9fd8b08

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

pandas/tests/extension/conftest.py

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ def data():
2121
raise NotImplementedError
2222

2323

24+
@pytest.fixture
25+
def data_for_twos():
26+
"""Length-100 array in which all the elements are two."""
27+
raise NotImplementedError
28+
29+
2430
@pytest.fixture
2531
def data_missing():
2632
"""Length-2 array with [NA, Valid]"""

pandas/tests/extension/json/test_json.py

+2
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ def test_add_series_with_extension_array(self, data):
291291
ser + data
292292

293293
def test_divmod_series_array(self):
294+
# GH 23287
295+
# skipping because it is not implemented
294296
pass
295297

296298
def _check_divmod_op(self, s, op, other, exc=NotImplementedError):

pandas/tests/extension/test_categorical.py

+2
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ def test_add_series_with_extension_array(self, data):
215215
ser + data
216216

217217
def test_divmod_series_array(self):
218+
# GH 23287
219+
# skipping because it is not implemented
218220
pass
219221

220222
def _check_divmod_op(self, s, op, other, exc=NotImplementedError):

0 commit comments

Comments
 (0)