We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872cd7d commit 2a2ba0fCopy full SHA for 2a2ba0f
tests/unit/test_s3_parquet.py
@@ -600,11 +600,8 @@ def test_read_parquet_versioned(path) -> None:
600
assert version_id == wr.s3.describe_objects(path=path_file, version_id=version_id)[path_file]["VersionId"]
601
602
603
-@pytest.mark.xfail(
604
- is_ray_modin,
605
- raises=wr.exceptions.InvalidArgumentCombination,
606
- reason="Index not working when repartitioning to a single file",
607
-)
+# TODO https://github.com/aws/aws-sdk-pandas/issues/1775
+@pytest.mark.xfail(reason="The `ignore_index` is not implemented")
608
def test_read_parquet_schema_validation_with_index_column(path) -> None:
609
path_file = f"{path}file.parquet"
610
df = pd.DataFrame({"idx": [1], "col": [2]})
0 commit comments