Skip to content

Commit 679100a

Browse files
skip test on arm
1 parent aa5aad8 commit 679100a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/tslibs/test_parsing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from pandas._libs.tslibs.parsing import parse_datetime_string_with_reso
1818
from pandas.compat import (
1919
ISMUSL,
20+
is_platform_arm,
2021
is_platform_windows,
2122
)
2223
import pandas.util._test_decorators as td
@@ -26,15 +27,14 @@
2627

2728

2829
@pytest.mark.skipif(
29-
is_platform_windows() or ISMUSL,
30+
is_platform_windows() or ISMUSL or is_platform_arm(),
3031
reason="TZ setting incorrect on Windows and MUSL Linux",
3132
)
3233
def test_parsing_tzlocal_deprecated():
3334
# GH#50791
3435
msg = (
3536
"Parsing 'EST' as tzlocal.*"
3637
"Pass the 'tz' keyword or call tz_localize after construction instead"
37-
"|Parsed string"
3838
)
3939
dtstr = "Jan 15 2004 03:00 EST"
4040

0 commit comments

Comments
 (0)