From f97f61c60fe9e387982e4824290bd8903b508b6e Mon Sep 17 00:00:00 2001 From: Matthew Murray <41342305+Matt711@users.noreply.github.com> Date: Fri, 6 Sep 2024 18:38:11 -0400 Subject: [PATCH] Remove xfail from torch-cudf.pandas integration test (#16705) The torch test should no longer fail after #16601. Authors: - Matthew Murray (https://github.com/Matt711) Approvers: - James Lamb (https://github.com/jameslamb) - Matthew Roeschke (https://github.com/mroeschke) URL: https://github.com/rapidsai/cudf/pull/16705 --- .../third_party_integration_tests/tests/test_pytorch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/test_pytorch.py b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/test_pytorch.py index ae9db3836a6..ad287471aa0 100644 --- a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/test_pytorch.py +++ b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/test_pytorch.py @@ -121,8 +121,6 @@ def test_torch_tensor_ctor(): return torch.tensor(s.values) -@pytest.mark.xfail_cudf_pandas(reason="Known failure, see xdf/#210") -@pytest.mark.xfail_compare def test_torch_tensor_from_numpy(): s = pd.Series(range(5)) return torch.from_numpy(s.values)