AlenkaF commented on code in PR #37436:
URL: https://github.com/apache/arrow/pull/37436#discussion_r1340038199
##########
python/pyarrow/tests/util.py:
##########
@@ -456,4 +456,5 @@ def windows_has_tzdata():
this configurable at run-time)
"""
tzdata_path = os.path.expandvars(r"%USERPROFILE%\Downloads\tzdata")
- return os.path.exists(tzdata_path)
+ tzdata_set_path = os.environ.get('PYARROW_TZDATA_PATH', '')
+ return os.path.exists(tzdata_path) or os.path.exists(tzdata_set_path)
Review Comment:
https://github.com/apache/arrow/pull/37436/commits/c9fd8612739745373bdadce7a1520982894a9903#diff-2c3ffa32d2769f65282dba5b78ba82e53daa88d8a762079947f242f132e6aa26
Hope I understood correctly.
--
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]