From a6c91db958d5a9e675158d1c320ea697244a70d1 Mon Sep 17 00:00:00 2001 From: Robert Pack <42610831+roeap@users.noreply.github.com> Date: Fri, 26 Jan 2024 22:19:50 +0100 Subject: [PATCH] fix: temporarily skip s3 roundtrip test (#2124) # Description Right now we have some [issue](https://github.com/delta-io/delta-rs/pull/2120#issuecomment-1912367573)in how we identify if a location is a delta-table. This disables an affected test so we can merge PRs again without having to ignore requires CI runs. --- python/tests/test_fs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/tests/test_fs.py b/python/tests/test_fs.py index adbacb29cc..8ece647d4c 100644 --- a/python/tests/test_fs.py +++ b/python/tests/test_fs.py @@ -91,6 +91,9 @@ def test_read_simple_table_from_remote(s3_localstack): @pytest.mark.s3 @pytest.mark.integration @pytest.mark.timeout(timeout=15, method="thread") +@pytest.mark.skip( + reason="Temporarily disabled until we can resolve https://github.com/delta-io/delta-rs/pull/2120#issuecomment-1912367573" +) def test_roundtrip_s3_env(s3_localstack, sample_data: pa.Table, monkeypatch): table_path = "s3://deltars/roundtrip"