From 4e8e0951be4b24a31bfa4a95fca11c8a6e4e7851 Mon Sep 17 00:00:00 2001 From: Alexander Lakhin Date: Thu, 3 Apr 2025 14:23:30 +0300 Subject: [PATCH] Increase timeout for test_pageserver_gc_compaction_smoke (#11410) ## Problem The test_pageserver_gc_compaction_smoke fails rather often due to a timeout on slow machines. See https://github.com/neondatabase/neon/issues/11355. ## Summary of changes Increase the timeout for the test. --- test_runner/regress/test_compaction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test_runner/regress/test_compaction.py b/test_runner/regress/test_compaction.py index e5f5b80d2d..6789939e0c 100644 --- a/test_runner/regress/test_compaction.py +++ b/test_runner/regress/test_compaction.py @@ -166,6 +166,7 @@ def test_pageserver_compaction_preempt( @skip_in_debug_build("only run with release build") +@pytest.mark.timeout(900) # This test is slow with sanitizers enabled, especially on ARM @pytest.mark.parametrize( "with_branches", ["with_branches", "no_branches"],