Skip to content

TST: Add tests for old issues 2 #41493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 19, 2021
Prev Previous commit
Next Next commit
xfail incorrect return
  • Loading branch information
mroeschke committed May 18, 2021
commit aea4e324134f1374df2d9dbc3ac79b385b988601
9 changes: 8 additions & 1 deletion pandas/tests/frame/methods/test_quantile.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,14 @@ def test_empty_numeric(self, dtype, expected_data, expected_index, axis):
@pytest.mark.parametrize(
"dtype, expected_data, expected_index, axis, expected_dtype",
[
["datetime64[ns]", [], [], 1, "float64"],
pytest.param(
"datetime64[ns]",
[],
[],
1,
"datetime64[ns]",
marks=pytest.mark.xfail(reason="#GH 41544"),
),
["datetime64[ns]", [pd.NaT, pd.NaT], ["a", "b"], 0, "datetime64[ns]"],
],
)
Expand Down