Skip to content

Commit 310a7e3

Browse files
authored
Revert "xref #26189, xfail scipy interpolate test for pchip with timedelta (#26190)" (#26231)
This reverts commit e134ddb.
1 parent 96dd2a9 commit 310a7e3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/series/test_missing.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1440,12 +1440,10 @@ def test_interpolate_timedelta_index(self, interp_methods_ind):
14401440
if method == "pchip":
14411441
_skip_if_no_pchip()
14421442

1443-
if method in {"linear"}:
1443+
if method in {"linear", "pchip"}:
14441444
result = df[0].interpolate(method=method, **kwargs)
14451445
expected = pd.Series([0.0, 1.0, 2.0, 3.0], name=0, index=ind)
14461446
assert_series_equal(result, expected)
1447-
elif method in {"pchip"}:
1448-
pytest.xfail(reason="gh-26189: broken on scipy master")
14491447
else:
14501448
pytest.skip(
14511449
"This interpolation method is not supported for "

0 commit comments

Comments
 (0)