@@ -360,6 +360,7 @@ def test_parquet_with_size(path, use_threads, max_rows_by_file):
360360 assert df .iint8 .sum () == df2 .iint8 .sum ()
361361
362362
363+ @pytest .mark .xfail (is_ray_modin , raises = AssertionError , reason = "Index equality regression" )
363364@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
364365def test_index_and_timezone (path , use_threads ):
365366 df = pd .DataFrame ({"c0" : [datetime .utcnow (), datetime .utcnow ()], "par" : ["a" , "b" ]}, index = ["foo" , "boo" ])
@@ -396,6 +397,7 @@ def test_index_recovery_simple_str(path, use_threads):
396397 assert_pandas_equals (df , df2 )
397398
398399
400+ @pytest .mark .xfail (is_ray_modin , raises = AssertionError , reason = "Index equality regression" )
399401@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
400402def test_index_recovery_partitioned_str (path , use_threads ):
401403 df = pd .DataFrame (
@@ -623,6 +625,11 @@ def test_parquet_compression(path, compression) -> None:
623625 assert_pandas_equals (df , df2 )
624626
625627
628+ @pytest .mark .xfail (
629+ is_ray_modin ,
630+ raises = AssertionError ,
631+ reason = "Dataframe indexes are not equal in distributed mode" ,
632+ )
626633@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
627634def test_empty_file (path , use_threads ):
628635 df = pd .DataFrame ({"c0" : [1 , 2 , 3 ], "c1" : [None , None , None ], "par" : ["a" , "b" , "c" ]})
0 commit comments