Skip to content

Commit

Permalink
remove xfails from recently merged PR
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Mar 16, 2021
1 parent ce52229 commit b989d1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/cudf/cudf/tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -5017,12 +5017,12 @@ def test_cov_nans():
operator.truediv,
operator.mod,
operator.pow,
pytest.param(operator.eq, marks=pytest.mark.xfail()),
pytest.param(operator.lt, marks=pytest.mark.xfail()),
pytest.param(operator.le, marks=pytest.mark.xfail()),
pytest.param(operator.gt, marks=pytest.mark.xfail()),
pytest.param(operator.ge, marks=pytest.mark.xfail()),
pytest.param(operator.ne, marks=pytest.mark.xfail()),
operator.eq,
operator.lt,
operator.le,
operator.gt,
operator.ge,
operator.ne,
],
)
def test_df_sr_binop(gsr, colnames, op):
Expand Down

0 comments on commit b989d1e

Please sign in to comment.