test_runner: re-enable large slru benchmark (#7125)

Previously disabled due to
https://github.com/neondatabase/neon/issues/7006.
This commit is contained in:
Vlad Lazar
2024-03-14 16:47:32 +00:00
committed by GitHub
parent 38767ace68
commit 3d8830ac35

View File

@@ -1,6 +1,5 @@
import asyncio
import json
import os
from pathlib import Path
from typing import Any, Dict, Tuple
@@ -20,10 +19,6 @@ from performance.pageserver.util import (
@pytest.mark.parametrize("n_tenants", [10])
@pytest.mark.parametrize("get_vectored_impl", ["sequential", "vectored"])
@pytest.mark.timeout(1000)
@pytest.mark.skipif(
os.getenv("CI", "false") == "true",
reason="The test if flaky on CI: https://github.com/neondatabase/neon/issues/7006",
)
def test_basebackup_with_high_slru_count(
neon_env_builder: NeonEnvBuilder,
zenbenchmark: NeonBenchmarker,