Skip to content

Commit 82505dc

Browse files
authored
gh-108303: Move test_future into its own test_future_stmt subdir (#109368)
1 parent fa49390 commit 82505dc

18 files changed

+37
-19
lines changed

Lib/test/libregrtest/findtests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
SPLITTESTDIRS: set[TestName] = {
1919
"test_asyncio",
2020
"test_concurrent_futures",
21+
"test_future_stmt",
2122
"test_multiprocessing_fork",
2223
"test_multiprocessing_forkserver",
2324
"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)