From 3ce8a0279afe6e5c5793c1f37cadde07161e6c83 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 24 Jul 2018 15:51:21 -0400 Subject: [PATCH] Increase liveserver timeout on older registry tests --- test/registry_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/registry_tests.py b/test/registry_tests.py index a897968cf..9afc0fc7c 100644 --- a/test/registry_tests.py +++ b/test/registry_tests.py @@ -256,6 +256,7 @@ class RegistryTestCaseMixin(LiveServerTestCase): app.config['TESTING'] = True app.config['LIVESERVER_PORT'] = 0 # LiveServerTestCase will choose the port for us. + app.config['LIVESERVER_TIMEOUT'] = 15 app.config['DB_URI'] = get_new_database_uri() return app