Logo
Explore Help
Sign In
ada/cpython
0
0
Fork 0
You've already forked cpython
mirror of https://github.com/AdaCore/cpython.git synced 2026-02-12 12:57:15 -08:00
Code Issues Packages Projects Releases Wiki Activity
Files
f4c865eda8f57dedaeaa16530ab6f1024bfb94de
cpython/Lib/test/test_importlib/source/__init__.py

6 lines
142 B
Python
Raw Normal View History

Issue #22002: Make full use of test discovery in test sub-packages. Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
2014-07-23 12:00:29 -05:00
import os
from test.support import load_package_tests
Add initial implementation of importlib. See the NOTES files for what is planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.
2009-01-18 00:24:28 +00:00
Issue #22002: Make full use of test discovery in test sub-packages. Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
2014-07-23 12:00:29 -05:00
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)
Reference in New Issue Copy Permalink
Powered by Gitea Page: 4063ms Template: 19ms
English
English
Licenses API