From f973a70bfcbaa69507c3fad043b5b56872bc2be5 Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Wed, 10 Apr 2024 19:09:52 +0200 Subject: [PATCH] Made postgresql.tests.Tests.test_connect_pool less flaky by increasing timeout value. --- tests/backends/postgresql/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/backends/postgresql/tests.py b/tests/backends/postgresql/tests.py index d28c5be253..47f8d94004 100644 --- a/tests/backends/postgresql/tests.py +++ b/tests/backends/postgresql/tests.py @@ -241,7 +241,7 @@ class Tests(TestCase): new_connection.settings_dict["OPTIONS"]["pool"] = { "min_size": 0, "max_size": 2, - "timeout": 0.1, + "timeout": 5, } self.assertIsNotNone(new_connection.pool)