Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-35040: [Python] Skip test_cast_timestamp_to_string on Windows because it requires tz database #35735

Merged
merged 4 commits into from
Jun 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/pyarrow/tests/test_scalars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import decimal
import pickle
import pytest
import sys
import weakref

import numpy as np
Expand Down Expand Up @@ -295,6 +296,9 @@ def test_cast():
pa.scalar('foo').cast('int32')


# TODO: We should test on windows once ARROW-13168 is resolved.
@pytest.mark.skipif(sys.platform == 'win32',
reason="Timezone database is not available on Windows yet")
rok marked this conversation as resolved.
Show resolved Hide resolved
def test_cast_timestamp_to_string():
# GH-35370
pytest.importorskip("pytz")
Expand Down