skip test_branching_with_pgbench

This commit is contained in:
Thang Pham
2022-07-14 10:43:44 -04:00
parent adcda6d4e5
commit 2d6ec3b8b0
4 changed files with 5 additions and 4 deletions

View File

@@ -6,8 +6,8 @@ from fixtures.neon_fixtures import NeonEnv, NeonEnvBuilder, NeonPageserverApiExc
#
# Create ancestor branches off the main branch.
#
@pytest.mark.parametrize("x", range(20))
def test_ancestor_branch(neon_env_builder: NeonEnvBuilder, x: int):
# @pytest.mark.parametrize("x", range(20))
def test_ancestor_branch(neon_env_builder: NeonEnvBuilder):
env = neon_env_builder.init_start()
# Override defaults, 1M gc_horizon and 4M checkpoint_distance.

View File

@@ -41,7 +41,7 @@ from fixtures.utils import lsn_from_hex
# Because the delta layer D covering lsn1 is corrupted, creating a branch
# starting from lsn1 should return an error as follows:
# could not find data for key ... at LSN ..., for request at LSN ...
@pytest.mark.skip("")
# @pytest.mark.skip("")
def test_branch_and_gc(neon_simple_env: NeonEnv):
env = neon_simple_env

View File

@@ -20,6 +20,7 @@ from performance.test_perf_pgbench import get_scales_matrix
@pytest.mark.parametrize("n_branches", [10])
@pytest.mark.parametrize("scale", get_scales_matrix(1))
@pytest.mark.parametrize("ty", ["cascade", "flat"])
@pytest.mark.skip("")
def test_branching_with_pgbench(neon_simple_env: NeonEnv,
pg_bin: PgBin,
n_branches: int,