Skip to content

Commit 60b0e9f

Browse files
authored
CI troubleshoot azure (#33080)
* troubleshoot azure * troubleshoot locale build
1 parent e88c392 commit 60b0e9f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/tests/io/test_parquet.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
""" test parquet compat """
22
import datetime
33
from distutils.version import LooseVersion
4+
import locale
45
import os
56
from warnings import catch_warnings
67

@@ -483,6 +484,11 @@ def test_categorical(self, pa):
483484
expected = df.astype(object)
484485
check_round_trip(df, pa, expected=expected)
485486

487+
# GH#33077 2020-03-27
488+
@pytest.mark.xfail(
489+
locale.getlocale()[0] == "zh_CN",
490+
reason="dateutil cannot parse e.g. '五, 27 3月 2020 21:45:38 GMT'",
491+
)
486492
def test_s3_roundtrip(self, df_compat, s3_resource, pa):
487493
# GH #19134
488494
check_round_trip(df_compat, pa, path="s3://pandas-test/pyarrow.parquet")

0 commit comments

Comments
 (0)