Skip to content

Commit

Permalink
Revert "xref pandas-dev#26189, xfail scipy interpolate test for pchip…
Browse files Browse the repository at this point in the history
… with timedelta (pandas-dev#26190)" (pandas-dev#26231)

This reverts commit e134ddb.
  • Loading branch information
jreback authored Apr 28, 2019
1 parent 96dd2a9 commit 310a7e3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pandas/tests/series/test_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,12 +1440,10 @@ def test_interpolate_timedelta_index(self, interp_methods_ind):
if method == "pchip":
_skip_if_no_pchip()

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

0 comments on commit 310a7e3

Please sign in to comment.