mirror of
https://github.com/python/cpython.git
synced 2025-11-07 09:02:02 +00:00
* Move test_posix.py and test_os.py to Lib/test/test_os/. * Split Windows specific test cases to a new test_windows.py file.
6 lines
148 B
Python
6 lines
148 B
Python
import os.path
|
|
from test.support import load_package_tests
|
|
|
|
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|