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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=830d7d2936434ace113822294acce82f62cde41b;p=thirdparty%2FPython%2Fcpython.git bpo-31234: test_httpservers joins the server thread (#3188) --- diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index fb4ae1928ba4..8cddcdc43843 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):