Skip to content

Commit

Permalink
test_pg_regress: increase timeout and always run vectored get validation
Browse files Browse the repository at this point in the history
  • Loading branch information
problame committed Jun 19, 2024
1 parent 1f9a39f commit 45d7669
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test_runner/regress/test_pg_regress.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@

# Run the main PostgreSQL regression tests, in src/test/regress.
#
@pytest.mark.timeout(600)
@pytest.mark.parametrize("shard_count", [None, 4])
def test_pg_regress(
neon_env_builder: NeonEnvBuilder,
test_output_dir: Path,
build_type: str,
pg_bin: PgBin,
capsys: CaptureFixture[str],
base_dir: Path,
Expand All @@ -43,10 +43,6 @@ def test_pg_regress(
if shard_count is not None:
neon_env_builder.num_pageservers = shard_count

if build_type == "debug":
# Disable vectored read path cross validation since it makes the test time out.
neon_env_builder.pageserver_config_override = "validate_vectored_get=false"

neon_env_builder.enable_pageserver_remote_storage(s3_storage())
neon_env_builder.enable_scrub_on_exit()
env = neon_env_builder.init_start(initial_tenant_shard_count=shard_count)
Expand Down

0 comments on commit 45d7669

Please sign in to comment.