Skip to content

Commit a31fc20

Browse files
Minor: Add xfail to test_read_parquet_schema_validation_with_index_column
1 parent 27afa26 commit a31fc20

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/unit/test_s3_parquet.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,11 @@ def test_read_parquet_versioned(path) -> None:
600600
assert version_id == wr.s3.describe_objects(path=path_file, version_id=version_id)[path_file]["VersionId"]
601601

602602

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+
)
603608
def test_read_parquet_schema_validation_with_index_column(path) -> None:
604609
path_file = f"{path}file.parquet"
605610
df = pd.DataFrame({"idx": [1], "col": [2]})

0 commit comments

Comments
 (0)