rok commented on code in PR #35735:
URL: https://github.com/apache/arrow/pull/35735#discussion_r1204850241
##########
python/pyarrow/tests/test_scalars.py:
##########
@@ -295,6 +296,9 @@ def test_cast():
pa.scalar('foo').cast('int32')
+# TODO: We should test on windows once ARROW-13168 is resolved.
[email protected](sys.platform == 'win32',
+ reason="Timezone database is not available on Windows yet")
Review Comment:
Perhaps a more correct wording (so as to not confuse the reader) would be:
```suggestion
@pytest.mark.skipif(sys.platform == 'win32',
reason="Timezone database is sometimes not available on
Windows yet")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]