1 parent 6037c3c commit f8a4fe8Copy full SHA for f8a4fe8
1 file changed
tests/integration/test_writes/test_writes.py
@@ -870,7 +870,9 @@ def test_summaries_with_only_nulls(
870
@pytest.mark.integration
871
def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table) -> None:
872
os.environ["TZ"] = "Etc/UTC"
873
- time.tzset()
+
874
+ if hasattr(time, "tzset"):
875
+ time.tzset()
876
tz = pytz.timezone(os.environ["TZ"])
877
878
catalog = SqlCatalog("test_sql_catalog", uri="sqlite:///:memory:", warehouse=f"/{warehouse}")
0 commit comments