test_startup: increase timeout (#5238)

## Problem

`test_runner/performance/test_startup.py::test_startup` started to fail
more frequently because of the timeout.
Let's increase the timeout to see the failures on the perf dashboard.

## Summary of changes
- Increase timeout for`test_startup` from 600 to 900 seconds
This commit is contained in:
Alexander Bayandin
2023-09-08 01:57:38 +01:00
committed by GitHub
parent 57c1ea49b3
commit b80740bf9f

View File

@@ -84,7 +84,7 @@ def test_startup_simple(neon_env_builder: NeonEnvBuilder, zenbenchmark: NeonBenc
# This test sometimes runs for longer than the global 5 minute timeout.
@pytest.mark.timeout(600)
@pytest.mark.timeout(900)
def test_startup(neon_env_builder: NeonEnvBuilder, zenbenchmark: NeonBenchmarker):
neon_env_builder.num_safekeepers = 3
env = neon_env_builder.init_start()