From 1801aa8855b8e3159ea393e14d5ff3cea154c81d Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Tue, 29 Apr 2025 14:18:17 +0300 Subject: [PATCH] Mark test_lfc_prefetch with @pytest.mark.remote_cluster --- test_runner/performance/test_lfc_prefetch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_runner/performance/test_lfc_prefetch.py b/test_runner/performance/test_lfc_prefetch.py index 8757017a47..407b1fe8f7 100644 --- a/test_runner/performance/test_lfc_prefetch.py +++ b/test_runner/performance/test_lfc_prefetch.py @@ -13,7 +13,8 @@ if TYPE_CHECKING: from fixtures.utils import USE_LFC -@pytest.mark.timeout(10000) +@pytest.mark.timeout(100000) +@pytest.mark.remote_cluster @pytest.mark.parametrize("n_readers", [1, 2, 4, 8]) @pytest.mark.parametrize("n_writers", [0, 1, 2, 4, 8]) @pytest.mark.parametrize("chunk_size", [1, 8, 16])