mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
# Author: Collin Winter
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from test.support import load_package_tests
|
|
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|