From d0e22e5afb5df9c3c49d3602d182f5be95e3028f Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 8 Sep 2015 10:40:10 -0400 Subject: [PATCH] Use a different port number for each live server test case in the registry tests --- test/registry_tests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/registry_tests.py b/test/registry_tests.py index cba8fa87d..4300f2df9 100644 --- a/test/registry_tests.py +++ b/test/registry_tests.py @@ -68,11 +68,16 @@ class TestFeature(object): data=json.dumps(dict(value=self.old_value)), headers={'Content-Type': 'application/json'}) +_PORT_NUMBER = 5001 + class RegistryTestCase(LiveServerTestCase): maxDiff = None def create_app(self): + global _PORT_NUMBER + _PORT_NUMBER = _PORT_NUMBER + 1 app.config['TESTING'] = True + app.config['LIVESERVER_PORT'] = _PORT_NUMBER return app def setUp(self):