Skip to content

Commit 37b2617

Browse files
vstinnersobolevn
andauthored
[3.11] gh-108303: Move test_future into its own test_future_stmt subdir (#109368) (#109680)
gh-108303: Move `test_future` into its own test_future_stmt subdir (#109368) (cherry picked from commit 82505dc) Co-authored-by: Nikita Sobolev <[email protected]>
1 parent 84d8fdb commit 37b2617

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
@@ -141,6 +141,7 @@ def set_env_changed(self):
141141

142142
SPLITTESTDIRS = {
143143
"test_asyncio",
144+
"test_future_stmt",
144145
}
145146

146147
# Storage of uncollectable objects

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)