This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch maint-15.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 5cd4f07c7b309bbbdbdf18a0f2325055287cbc74 Author: Alenka Frim <[email protected]> AuthorDate: Tue Mar 12 12:45:34 2024 +0100 GH-40485: [Python][CI] Skip failing test_dateutil_tzinfo_to_string (#40486) * GitHub Issue: #40485 Authored-by: AlenkaF <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]> --- python/pyarrow/tests/test_types.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/pyarrow/tests/test_types.py b/python/pyarrow/tests/test_types.py index c8a52c6b62..14d88f3e39 100644 --- a/python/pyarrow/tests/test_types.py +++ b/python/pyarrow/tests/test_types.py @@ -321,6 +321,11 @@ def test_pytz_tzinfo_to_string(): def test_dateutil_tzinfo_to_string(): + if sys.platform == 'win32': + # Skip due to new release of python-dateutil + # https://github.com/apache/arrow/issues/40485 + pytest.skip('Skip on Win due to new release of python-dateutil') + pytest.importorskip("dateutil") import dateutil.tz
