From 35b7f14a340ff1256a8e84fdeaa7f284a54f05fd Mon Sep 17 00:00:00 2001 From: Thang Pham Date: Thu, 14 Jul 2022 12:32:37 -0400 Subject: [PATCH] add back `test_branching_with_pgbench` --- test_runner/batch_others/test_branching.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_runner/batch_others/test_branching.py b/test_runner/batch_others/test_branching.py index d6c9f41453..2b6d5229c6 100644 --- a/test_runner/batch_others/test_branching.py +++ b/test_runner/batch_others/test_branching.py @@ -20,7 +20,6 @@ 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, @@ -45,7 +44,7 @@ def test_branching_with_pgbench(neon_simple_env: NeonEnv, log.info(f"Start a pgbench workload on pg {connstr}") pg_bin.run_capture(['pgbench', '-i', f'-s{scale}', connstr]) - pg_bin.run_capture(['pgbench', '-c10', '-T15', connstr]) + pg_bin.run_capture(['pgbench', '-T15', connstr]) env.neon_cli.create_branch('b0', tenant_id=tenant) pgs: List[Postgres] = []