From 6d99b4f1d8b3a78163f0171fee1eb26d37dba260 Mon Sep 17 00:00:00 2001 From: Thang Pham Date: Fri, 12 Aug 2022 19:13:42 +0700 Subject: [PATCH] disable `test_import_from_pageserver_multisegment` (#2258) This test failed consistently on `main` now. It's better to temporarily disable it to avoid blocking others' PRs while investigating the root cause for the test failure. See: #2255, #2256 --- test_runner/batch_others/test_import.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test_runner/batch_others/test_import.py b/test_runner/batch_others/test_import.py index d4b8b7a153..039945e5e4 100644 --- a/test_runner/batch_others/test_import.py +++ b/test_runner/batch_others/test_import.py @@ -120,7 +120,10 @@ def test_import_from_pageserver_small(pg_bin: PgBin, neon_env_builder: NeonEnvBu @pytest.mark.timeout(1800) -@pytest.mark.skipif(os.environ.get('BUILD_TYPE') == "debug", reason="only run with release build") +# TODO: temporarily disable `test_import_from_pageserver_multisegment` test, enable +# the test back after finding the failure cause. +# @pytest.mark.skipif(os.environ.get('BUILD_TYPE') == "debug", reason="only run with release build") +@pytest.mark.skip("See https://github.com/neondatabase/neon/issues/2255") def test_import_from_pageserver_multisegment(pg_bin: PgBin, neon_env_builder: NeonEnvBuilder): neon_env_builder.num_safekeepers = 1 neon_env_builder.enable_local_fs_remote_storage()