Skip to content

Commit cd48f48

Browse files
Revert "pythonGH-66285: skip asyncio fork tests for platforms without md5 hash (python#99745)"
This reverts commit 679d963.
1 parent b5b3904 commit cd48f48

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_asyncio/test_unix_events.py

-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from test.support import os_helper
1919
from test.support import socket_helper
2020
from test.support import wait_process
21-
from test.support import hashlib_helper
2221

2322
if sys.platform == 'win32':
2423
raise unittest.SkipTest('UNIX only')
@@ -1894,7 +1893,6 @@ async def test_fork_not_share_event_loop(self):
18941893
self.assertNotEqual(child_loop, id(loop))
18951894
wait_process(pid, exitcode=0)
18961895

1897-
@hashlib_helper.requires_hashdigest('md5')
18981896
def test_fork_signal_handling(self):
18991897
# Sending signal to the forked process should not affect the parent
19001898
# process
@@ -1932,7 +1930,6 @@ async def func():
19321930
self.assertFalse(parent_handled.is_set())
19331931
self.assertTrue(child_handled.is_set())
19341932

1935-
@hashlib_helper.requires_hashdigest('md5')
19361933
def test_fork_asyncio_run(self):
19371934
ctx = multiprocessing.get_context('fork')
19381935
manager = ctx.Manager()
@@ -1949,7 +1946,6 @@ async def child_main():
19491946

19501947
self.assertEqual(result.value, 42)
19511948

1952-
@hashlib_helper.requires_hashdigest('md5')
19531949
def test_fork_asyncio_subprocess(self):
19541950
ctx = multiprocessing.get_context('fork')
19551951
manager = ctx.Manager()

0 commit comments

Comments
 (0)