From 3ecce143fcbefd9056386130e20ead9de495db38 Mon Sep 17 00:00:00 2001 From: kssenii Date: Mon, 6 Nov 2023 14:43:10 +0100 Subject: [PATCH] Restrict modes for the test --- tests/integration/test_storage_s3_queue/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_storage_s3_queue/test.py b/tests/integration/test_storage_s3_queue/test.py index d659126f49a..1489855fc08 100644 --- a/tests/integration/test_storage_s3_queue/test.py +++ b/tests/integration/test_storage_s3_queue/test.py @@ -626,7 +626,8 @@ def test_multiple_tables_meta_mismatch(started_cluster): ) -@pytest.mark.parametrize("mode", AVAILABLE_MODES) +# TODO: Update the modes for this test to include "ordered" once PR #55795 is finished. +@pytest.mark.parametrize("mode", ["unordered"]) def test_multiple_tables_streaming_sync(started_cluster, mode): node = started_cluster.instances["instance"] table_name = f"multiple_tables_streaming_sync_{mode}"