From 143fa0da42f5e2dd865787d5a3da24b89c422526 Mon Sep 17 00:00:00 2001 From: Arseny Sher Date: Mon, 12 Jun 2023 17:24:12 +0400 Subject: [PATCH] Remove timeout on test_close_on_connections_exit We have 300s timeout on all tests, and doubling logic in popen.wait sometimes exceeds 5s, making the test flaky. ref https://github.com/neondatabase/neon/issues/4211 --- test_runner/regress/test_proxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test_runner/regress/test_proxy.py b/test_runner/regress/test_proxy.py index ca19dc3fd0..24c5b42b5a 100644 --- a/test_runner/regress/test_proxy.py +++ b/test_runner/regress/test_proxy.py @@ -163,7 +163,6 @@ def test_forward_params_to_client(static_proxy: NeonProxy): assert conn.get_parameter_status(name) == value -@pytest.mark.timeout(5) def test_close_on_connections_exit(static_proxy: NeonProxy): # Open two connections, send SIGTERM, then ensure that proxy doesn't exit # until after connections close.