Skip to content

Commit

Permalink
test: disable large slru basebackup bench in ci
Browse files Browse the repository at this point in the history
The test is flaky due to #7006.
  • Loading branch information
VladLazar committed Mar 5, 2024
1 parent 270d3be commit be5b9a1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
import json
import os
from pathlib import Path
from typing import Any, Dict, Tuple

Expand All @@ -19,6 +20,10 @@
@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,
Expand Down

0 comments on commit be5b9a1

Please sign in to comment.