We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5aad8 commit 679100aCopy full SHA for 679100a
pandas/tests/tslibs/test_parsing.py
@@ -17,6 +17,7 @@
17
from pandas._libs.tslibs.parsing import parse_datetime_string_with_reso
18
from pandas.compat import (
19
ISMUSL,
20
+ is_platform_arm,
21
is_platform_windows,
22
)
23
import pandas.util._test_decorators as td
@@ -26,15 +27,14 @@
26
27
28
29
@pytest.mark.skipif(
- is_platform_windows() or ISMUSL,
30
+ is_platform_windows() or ISMUSL or is_platform_arm(),
31
reason="TZ setting incorrect on Windows and MUSL Linux",
32
33
def test_parsing_tzlocal_deprecated():
34
# GH#50791
35
msg = (
36
"Parsing 'EST' as tzlocal.*"
37
"Pass the 'tz' keyword or call tz_localize after construction instead"
- "|Parsed string"
38
39
dtstr = "Jan 15 2004 03:00 EST"
40
0 commit comments