Skip to content

Commit ad072be

Browse files
sobolevnvstinner
authored andcommitted
pythongh-108303: Move test_future into its own test_future_stmt subdir (python#109368)
(cherry picked from commit 82505dc)
1 parent 4a0c118 commit ad072be

18 files changed

+37
-19
lines changed

Lib/test/libregrtest/runtest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ def iter_tests(self):
232232
SPLITTESTDIRS = {
233233
"test_asyncio",
234234
"test_concurrent_futures",
235+
"test_future_stmt",
235236
"test_multiprocessing_fork",
236237
"test_multiprocessing_forkserver",
237238
"test_multiprocessing_spawn",

Lib/test/test_future_stmt/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import os
2+
from test import support
3+
4+
5+
def load_tests(*args):
6+
return support.load_package_tests(os.path.dirname(__file__), *args)

0 commit comments

Comments
 (0)