Skip to content

Commit

Permalink
Remove gated xfails (rapidsai#14905)
Browse files Browse the repository at this point in the history
This removes xpassing tests from the test output.
  • Loading branch information
vyasr authored Jan 29, 2024
1 parent bf49a66 commit e74fe0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 43 deletions.
40 changes: 4 additions & 36 deletions python/cudf/cudf/tests/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -2274,45 +2274,13 @@ def test_range_index_concat(objs):
[
(pd.RangeIndex(0, 10), pd.RangeIndex(3, 7)),
(pd.RangeIndex(0, 10), pd.RangeIndex(10, 20)),
pytest.param(
pd.RangeIndex(0, 10, 2),
pd.RangeIndex(1, 5, 3),
marks=pytest.mark.xfail(
condition=PANDAS_GE_200,
reason="https://github.com/pandas-dev/pandas/issues/53490",
strict=False,
),
),
pytest.param(
pd.RangeIndex(1, 5, 3),
pd.RangeIndex(0, 10, 2),
marks=pytest.mark.xfail(
condition=PANDAS_GE_200,
reason="https://github.com/pandas-dev/pandas/issues/53490",
strict=False,
),
),
pytest.param(
pd.RangeIndex(1, 10, 3),
pd.RangeIndex(1, 5, 2),
marks=pytest.mark.xfail(
condition=PANDAS_GE_200,
reason="https://github.com/pandas-dev/pandas/issues/53490",
strict=False,
),
),
(pd.RangeIndex(0, 10, 2), pd.RangeIndex(1, 5, 3)),
(pd.RangeIndex(1, 5, 3), pd.RangeIndex(0, 10, 2)),
(pd.RangeIndex(1, 10, 3), pd.RangeIndex(1, 5, 2)),
(pd.RangeIndex(1, 5, 2), pd.RangeIndex(1, 10, 3)),
(pd.RangeIndex(1, 100, 3), pd.RangeIndex(1, 50, 3)),
(pd.RangeIndex(1, 100, 3), pd.RangeIndex(1, 50, 6)),
pytest.param(
pd.RangeIndex(1, 100, 6),
pd.RangeIndex(1, 50, 3),
marks=pytest.mark.xfail(
condition=PANDAS_GE_200,
reason="https://github.com/pandas-dev/pandas/issues/53490",
strict=False,
),
),
(pd.RangeIndex(1, 100, 6), pd.RangeIndex(1, 50, 3)),
(pd.RangeIndex(0, 10, name="a"), pd.RangeIndex(90, 100, name="b")),
(pd.Index([0, 1, 2, 30], name="a"), pd.Index([90, 100])),
(pd.Index([0, 1, 2, 30], name="a"), [90, 100]),
Expand Down
8 changes: 1 addition & 7 deletions python/cudf/cudf/tests/test_timedelta.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,13 +538,7 @@ def test_timedelta_series_mod_with_scalar_zero(reverse):
datetime.timedelta(seconds=768),
datetime.timedelta(microseconds=7),
np.timedelta64(4, "s"),
pytest.param(
np.timedelta64("nat", "s"),
marks=pytest.mark.xfail(
strict=False,
reason="https://github.com/pandas-dev/pandas/issues/52295",
),
),
np.timedelta64("nat", "s"),
np.timedelta64(1, "s"),
np.timedelta64(1, "ms"),
np.timedelta64(1, "us"),
Expand Down

0 comments on commit e74fe0a

Please sign in to comment.