@@ -410,6 +410,12 @@ def test_index_recovery_simple_str(path, use_threads):
410
410
assert_pandas_equals (df , df2 )
411
411
412
412
413
+ @pytest .mark .modin_index
414
+ @pytest .mark .xfail (
415
+ raises = AssertionError ,
416
+ reason = "https://github.com/ray-project/ray/issues/37771" ,
417
+ condition = is_ray_modin ,
418
+ )
413
419
@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
414
420
def test_index_recovery_partitioned_str (path , use_threads ):
415
421
df = pd .DataFrame (
@@ -530,6 +536,11 @@ def test_index_schema_validation(path, glue_database, glue_table, index):
530
536
531
537
532
538
@pytest .mark .modin_index
539
+ @pytest .mark .xfail (
540
+ raises = AssertionError ,
541
+ reason = "https://github.com/ray-project/ray/issues/37771" ,
542
+ condition = is_ray_modin ,
543
+ )
533
544
@pytest .mark .parametrize ("index" , [["c0" ], ["c0" , "c1" ]])
534
545
@pytest .mark .parametrize ("partition_cols" , [["c0" ], ["c0" , "c1" ]])
535
546
def test_index_partition (path , glue_database , glue_table , index , partition_cols ):
@@ -679,6 +690,12 @@ def test_validate_columns(path, partition_cols) -> None:
679
690
wr .s3 .read_parquet (path , columns = ["a" , "b" , "c" ], dataset = True , validate_schema = True )
680
691
681
692
693
+ @pytest .mark .modin_index
694
+ @pytest .mark .xfail (
695
+ raises = AssertionError ,
696
+ reason = "https://github.com/ray-project/ray/issues/37771" ,
697
+ condition = is_ray_modin ,
698
+ )
682
699
@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
683
700
def test_empty_column (path , use_threads ):
684
701
df = pd .DataFrame ({"c0" : [1 , 2 , 3 ], "c1" : [None , None , None ], "par" : ["a" , "b" , "c" ]})
0 commit comments