Skip to content

Commit 1eb1c4b

Browse files
Backport PR #33080: CI troubleshoot azure (#33973)
Co-authored-by: jbrockmendel <[email protected]>
1 parent 1fdb49d commit 1eb1c4b

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

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

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

0 commit comments

Comments
 (0)