Skip to content

Commit

Permalink
Remove xfails
Browse files Browse the repository at this point in the history
  • Loading branch information
harrism committed Oct 10, 2024
1 parent 0b2fa2b commit 5a56633
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions python/cuspatial/cuspatial/tests/test_cudf_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@

import cuspatial

reason = (
"gs fixture contains invalid Polygons/MultiPolygons: "
"https://github.com/libgeos/geos/issues/1177"
)


@pytest.mark.xfail(reason=reason)
def test_sort_index_series(gs):
gs.index = np.random.permutation(len(gs))
cugs = cuspatial.from_geopandas(gs)
Expand All @@ -21,7 +15,6 @@ def test_sort_index_series(gs):
gpd.testing.assert_geoseries_equal(got, expected)


@pytest.mark.xfail(reason=reason)
def test_sort_index_dataframe(gpdf):
gpdf.index = np.random.permutation(len(gpdf))
cugpdf = cuspatial.from_geopandas(gpdf)
Expand All @@ -30,7 +23,6 @@ def test_sort_index_dataframe(gpdf):
gpd.testing.assert_geodataframe_equal(got, expected)


@pytest.mark.xfail(reason=reason)
def test_sort_values(gpdf):
cugpdf = cuspatial.from_geopandas(gpdf)
expected = gpdf.sort_values("random")
Expand Down

0 comments on commit 5a56633

Please sign in to comment.