Skip to content

Commit

Permalink
Fix Python 3.11 test failures (#1351)
Browse files Browse the repository at this point in the history
This marks a memory test as `xfail`, which was failing on Python 3.11.

xref: #1352
xref: rapidsai/build-planning#3

Authors:
  - Kyle Edwards (https://github.com/KyleFromNVIDIA)

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - https://github.com/jakirkham
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #1351
  • Loading branch information
KyleFromNVIDIA authored Mar 1, 2024
1 parent 59972f6 commit 54f0430
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/cuspatial/cuspatial/tests/test_geodataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ def test_boolmask(gpdf, df_boolmask):
assert_eq_geo_df(gi[df_boolmask], cugpdf_back[df_boolmask])


@pytest.mark.xfail(
reason="Size discrepancies between Python versions. See "
"https://github.com/rapidsai/cuspatial/issues/1352"
)
def test_memory_usage(gs):
assert gs.memory_usage() == 224
host_dataframe = gpd.read_file(
Expand Down

0 comments on commit 54f0430

Please sign in to comment.