From ad8c8e4400fb10b53c8d2fb7711bc03fd24734ef Mon Sep 17 00:00:00 2001 From: Leon Luttenberger Date: Tue, 15 Nov 2022 10:49:37 -0600 Subject: [PATCH 1/2] Add xfail to test_read_parquet_schema_validation_with_index_column --- tests/unit/test_s3_parquet.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/unit/test_s3_parquet.py b/tests/unit/test_s3_parquet.py index 816c4dec0..a926edde2 100644 --- a/tests/unit/test_s3_parquet.py +++ b/tests/unit/test_s3_parquet.py @@ -600,11 +600,7 @@ def test_read_parquet_versioned(path) -> None: assert version_id == wr.s3.describe_objects(path=path_file, version_id=version_id)[path_file]["VersionId"] -@pytest.mark.xfail( - is_ray_modin, - raises=wr.exceptions.InvalidArgumentCombination, - reason="Index not working when repartitioning to a single file", -) +@pytest.mark.xfail(reason="The `ignore_index` is not implemented") def test_read_parquet_schema_validation_with_index_column(path) -> None: path_file = f"{path}file.parquet" df = pd.DataFrame({"idx": [1], "col": [2]}) From 99ca5b3adb37d0ecfde3190fcc5c802665743013 Mon Sep 17 00:00:00 2001 From: Leon Luttenberger Date: Tue, 15 Nov 2022 10:52:00 -0600 Subject: [PATCH 2/2] Add TODO link --- tests/unit/test_s3_parquet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_s3_parquet.py b/tests/unit/test_s3_parquet.py index a926edde2..0cc96fe8d 100644 --- a/tests/unit/test_s3_parquet.py +++ b/tests/unit/test_s3_parquet.py @@ -600,6 +600,7 @@ def test_read_parquet_versioned(path) -> None: assert version_id == wr.s3.describe_objects(path=path_file, version_id=version_id)[path_file]["VersionId"] +# TODO https://github.com/aws/aws-sdk-pandas/issues/1775 @pytest.mark.xfail(reason="The `ignore_index` is not implemented") def test_read_parquet_schema_validation_with_index_column(path) -> None: path_file = f"{path}file.parquet"