Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,15 +295,15 @@ def test_parent_process(self):
target=self._test_create_grandchild_process, args=(wconn, ))
p.start()

if not rconn.poll(timeout=60):
if not rconn.poll(timeout=support.LONG_TIMEOUT):
raise AssertionError("Could not communicate with child process")
parent_process_status = rconn.recv()
self.assertEqual(parent_process_status, "alive")

p.terminate()
p.join()

if not rconn.poll(timeout=60):
if not rconn.poll(timeout=support.LONG_TIMEOUT):
raise AssertionError("Could not communicate with child process")
parent_process_status = rconn.recv()
self.assertEqual(parent_process_status, "not alive")
Expand Down
3 changes: 2 additions & 1 deletion Lib/test/test_asyncio/test_sslproto.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from asyncio import log
from asyncio import protocols
from asyncio import sslproto
from test import support
from test.test_asyncio import utils as test_utils
from test.test_asyncio import functional as func_tests

Expand Down Expand Up @@ -162,7 +163,7 @@ def test_write_after_closing(self):
class BaseStartTLS(func_tests.FunctionalTestCaseMixin):

PAYLOAD_SIZE = 1024 * 100
TIMEOUT = 60
TIMEOUT = support.LONG_TIMEOUT

def new_loop(self):
raise NotImplementedError
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -1065,8 +1065,8 @@ class TestUnixDatagramServer(TestUDPServer):
# - end of server_helper section

class SMTPHandlerTest(BaseTest):
# bpo-14314, bpo-19665, bpo-34092: don't wait forever, timeout of 1 minute
TIMEOUT = 60.0
# bpo-14314, bpo-19665, bpo-34092: don't wait forever
TIMEOUT = support.LONG_TIMEOUT

def test_basic(self):
sockmap = {}
Expand Down