@@ -410,7 +410,6 @@ def test_index_recovery_simple_str(path, use_threads):
410410 assert_pandas_equals (df , df2 )
411411
412412
413- @pytest .mark .modin_index
414413@pytest .mark .xfail (
415414 raises = AssertionError ,
416415 reason = "https://github.com/ray-project/ray/issues/37771" ,
@@ -447,7 +446,6 @@ def test_range_index_recovery_simple(path, use_threads):
447446 assert_pandas_equals (df .reset_index (level = 0 ), df2 .reset_index (level = 0 ))
448447
449448
450- @pytest .mark .modin_index
451449@pytest .mark .xfail (
452450 raises = AssertionError ,
453451 reason = "https://github.com/ray-project/ray/issues/37771" ,
@@ -498,7 +496,6 @@ def test_multi_index_recovery_nameless(path, use_threads):
498496 assert_pandas_equals (df .reset_index (), df2 .reset_index ())
499497
500498
501- @pytest .mark .modin_index
502499@pytest .mark .xfail (
503500 raises = (wr .exceptions .InvalidArgumentCombination , AssertionError ),
504501 reason = "Named index not working when partitioning to a single file" ,
@@ -535,7 +532,6 @@ def test_index_schema_validation(path, glue_database, glue_table, index):
535532 assert_pandas_equals (pd .concat ([df , df ]), df2 )
536533
537534
538- @pytest .mark .modin_index
539535@pytest .mark .xfail (
540536 raises = AssertionError ,
541537 reason = "https://github.com/ray-project/ray/issues/37771" ,
@@ -625,7 +621,6 @@ def test_to_parquet_dataset_sanitize(path):
625621 assert df2 .par .to_list () == ["a" , "b" ]
626622
627623
628- @pytest .mark .modin_index
629624@pytest .mark .parametrize ("use_threads" , [False , True , 2 ])
630625def test_timezone_file (path , use_threads ):
631626 file_path = f"{ path } 0.parquet"
@@ -636,7 +631,6 @@ def test_timezone_file(path, use_threads):
636631 assert_pandas_equals (df , df2 )
637632
638633
639- @pytest .mark .modin_index
640634@pytest .mark .parametrize ("use_threads" , [True , False , 2 ])
641635def test_timezone_file_columns (path , use_threads ):
642636 file_path = f"{ path } 0.parquet"
@@ -690,7 +684,6 @@ def test_validate_columns(path, partition_cols) -> None:
690684 wr .s3 .read_parquet (path , columns = ["a" , "b" , "c" ], dataset = True , validate_schema = True )
691685
692686
693- @pytest .mark .modin_index
694687@pytest .mark .xfail (
695688 raises = AssertionError ,
696689 reason = "https://github.com/ray-project/ray/issues/37771" ,
@@ -715,7 +708,6 @@ def test_mixed_types_column(path) -> None:
715708 wr .s3 .to_parquet (df , path , dataset = True , partition_cols = ["par" ])
716709
717710
718- @pytest .mark .modin_index
719711@pytest .mark .parametrize ("compression" , [None , "snappy" , "gzip" , "zstd" ])
720712def test_parquet_compression (path , compression ) -> None :
721713 df = pd .DataFrame ({"id" : [1 , 2 , 3 ]}, dtype = "Int64" )
0 commit comments