Skip to content

Commit c1786bf

Browse files
gpsheadwoodruffw
authored andcommitted
pythongh-71052: fix test_concurrent_futures wasi regression. (python#115923)
Fix the WASI test_concurrent_futures regression from python#115917.
1 parent fc8abd7 commit c1786bf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Lib/test/test_concurrent_futures/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import os.path
22
import unittest
33
from test import support
4-
from test.support import import_helper
4+
from test.support import threading_helper
5+
6+
7+
# Adjust if we ever have a platform with processes but not threads.
8+
threading_helper.requires_working_threading(module=True)
59

610

711
if support.check_sanitizer(address=True, memory=True):

0 commit comments

Comments
 (0)