From: Victor Stinner Date: Tue, 22 Aug 2017 16:05:07 +0000 (+0200) Subject: bpo-31234: test_httpservers joins the server thread (#3188) X-Git-Tag: v3.7.0a1~232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=830d7d2936434ace113822294acce82f62cde41b;p=python bpo-31234: test_httpservers joins the server thread (#3188) --- diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index fb4ae1928b..8cddcdc438 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -56,6 +56,7 @@ class TestServerThread(threading.Thread): def stop(self): self.server.shutdown() + self.join() class BaseTestCase(unittest.TestCase):