Skip to content

Commit

Permalink
Workaround for Windows (untested, relying on CI :-))
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Oct 1, 2024
1 parent 0357c5f commit cce7a92
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/pyarrow/tests/parquet/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import inspect
import os
import pathlib
import sys

try:
import numpy as np
Expand Down Expand Up @@ -1075,6 +1076,9 @@ def test_write_to_dataset_pathlib_nonlocal(tempdir, s3_example_s3fs):

@pytest.mark.pandas
@pytest.mark.s3
# See https://github.com/apache/arrow/pull/44225#issuecomment-2378365291
@pytest.mark.skipif(sys.platform == "win32",
reason="test fails because of unsupported characters")
def test_write_to_dataset_with_partitions_s3fs(s3_example_s3fs):
fs, path = s3_example_s3fs

Expand Down

0 comments on commit cce7a92

Please sign in to comment.