Skip to content

Commit ca25668

Browse files
committed
Workaround for Windows (untested, relying on CI :-))
1 parent 4515eb5 commit ca25668

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/pyarrow/tests/parquet/test_dataset.py

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import inspect
2020
import os
2121
import pathlib
22+
import sys
2223

2324
try:
2425
import numpy as np
@@ -1075,6 +1076,9 @@ def test_write_to_dataset_pathlib_nonlocal(tempdir, s3_example_s3fs):
10751076

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

0 commit comments

Comments
 (0)