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 27afa26 commit a31fc20Copy full SHA for a31fc20
tests/unit/test_s3_parquet.py
@@ -600,6 +600,11 @@ 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
+)
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