Skip to content

Commit

Permalink
Merge pull request #17977 from rapidsai/branch-25.02
Browse files Browse the repository at this point in the history
Forward-merge branch-25.02 into branch-25.04
  • Loading branch information
GPUtester authored Feb 10, 2025
2 parents 1643e0a + d1a5558 commit 10cd7c4
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@
import pandas as pd
import pytest

from cudf.pandas import is_proxy_object
ibis.set_backend("pandas")

ibis.options.interactive = False


def ibis_assert_equal(expect, got, rtol: float = 1e-7, atol: float = 0.0):
assert is_proxy_object(got), (
"The result from cudf.pandas must be a proxy object"
)
pd._testing.assert_almost_equal(expect, got, rtol=rtol, atol=atol)


Expand Down

0 comments on commit 10cd7c4

Please sign in to comment.