Skip to content

Commit

Permalink
GH-40485: [Python][CI] Skip failing test_dateutil_tzinfo_to_string (#…
Browse files Browse the repository at this point in the history
…40486)

* GitHub Issue: #40485

Authored-by: AlenkaF <frim.alenka@gmail.com>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
AlenkaF committed Mar 12, 2024
1 parent b202ede commit 6121b3f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/pyarrow/tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,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

Expand Down

0 comments on commit 6121b3f

Please sign in to comment.