Fokko commented on code in PR #2557:
URL: https://github.com/apache/iceberg-python/pull/2557#discussion_r2417092213
##########
tests/integration/test_writes/test_writes.py:
##########
@@ -866,7 +866,8 @@ def test_summaries_with_only_nulls(
@pytest.mark.integration
def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table)
-> None:
os.environ["TZ"] = "Etc/UTC"
- time.tzset()
+ if hasattr(time, "tzset"):
+ time.tzset()
Review Comment:
```suggestion
time.tzset()
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]