Skip to content

Commit e2a4168

Browse files
committed
tests
1 parent 457290d commit e2a4168

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

pandas/tests/extension/decimal/test_decimal.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,12 @@ def test_invert(self, data):
226226
@pytest.mark.parametrize("ufunc", [np.positive, np.negative, np.abs])
227227
def test_unary_ufunc_dunder_equivalence(self, data, ufunc):
228228
super().test_unary_ufunc_dunder_equivalence(data, ufunc)
229+
230+
@pytest.mark.xfail(
231+
reason="DecimalArray.round is not implemented."
232+
)
233+
def test_round(self, data):
234+
super().test_round(data)
229235

230236

231237
def test_take_na_value_other_decimal():

pandas/tests/extension/test_interval.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ def test_EA_types(self, engine, data):
9595
def test_invert(self, data):
9696
super().test_invert(data)
9797

98+
@pytest.mark.xfail(
99+
reason="IntervalArray.round is not implemented."
100+
)
101+
def test_round(self, data):
102+
super().test_round(data)
103+
98104

99105
# TODO: either belongs in tests.arrays.interval or move into base tests.
100106
def test_fillna_non_scalar_raises(data_missing):

0 commit comments

Comments
 (0)