@@ -270,9 +270,7 @@ def test_cast_datetime_utc(
270270
271271
272272def test_cast_struct (request : pytest .FixtureRequest , constructor : Constructor ) -> None :
273- if any (
274- backend in str (constructor ) for backend in ("dask" , "modin" , "cudf" , "sqlframe" )
275- ):
273+ if any (backend in str (constructor ) for backend in ("dask" , "cudf" , "sqlframe" )):
276274 request .applymarker (pytest .mark .xfail )
277275
278276 if "pandas" in str (constructor ) and PANDAS_VERSION < (2 , 2 ):
@@ -328,9 +326,7 @@ def test_cast_time(request: pytest.FixtureRequest, constructor: Constructor) ->
328326 if "pandas" in str (constructor ) and PANDAS_VERSION < (2 , 2 ):
329327 pytest .skip ()
330328
331- if any (
332- backend in str (constructor ) for backend in ("dask" , "pyspark" , "modin" , "cudf" )
333- ):
329+ if any (backend in str (constructor ) for backend in ("dask" , "pyspark" , "cudf" )):
334330 request .applymarker (pytest .mark .xfail )
335331
336332 data = {"a" : [time (12 , 0 , 0 ), time (12 , 0 , 5 )]}
@@ -343,7 +339,7 @@ def test_cast_binary(request: pytest.FixtureRequest, constructor: Constructor) -
343339 if "pandas" in str (constructor ) and PANDAS_VERSION < (2 , 2 ):
344340 pytest .skip ()
345341
346- if any (backend in str (constructor ) for backend in ("cudf" , "dask" , "modin" )):
342+ if any (backend in str (constructor ) for backend in ("cudf" , "dask" )):
347343 request .applymarker (pytest .mark .xfail )
348344
349345 data = {"a" : ["test1" , "test2" ]}
0 commit comments