Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import platform
import time
from datetime import datetime, timezone

Expand Down Expand Up @@ -45,7 +44,7 @@ def test_iceberg_time_travel_by_snapshot_id(spark, tmp_path):
catalog.drop_table(identifier)


@pytest.mark.skipif(platform.system() == "Windows", reason="not working on Windows")
@pytest.mark.skip(reason="not working")
def test_iceberg_time_travel_by_timestamp(spark, tmp_path):
table_path = tmp_path / "tt_by_timestamp"
table_path.mkdir(parents=True, exist_ok=True)
Expand Down