Skip to content

Commit

Permalink
test: disable large slru basebackup bench in ci (#7025)
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 15b3665 commit 2daa2f1
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

1 comment on commit 2daa2f1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No tests were run or test report is not available

Code coverage* (full report)

  • functions: 28.8% (6982 of 24255 functions)
  • lines: 47.4% (42883 of 90535 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
2daa2f1 at 2024-03-05T16:55:23.990Z :recycle:

Please sign in to comment.