mirror of
https://github.com/python/cpython.git
synced 2025-10-23 18:03:48 +00:00
12 lines
294 B
Python
12 lines
294 B
Python
import os.path
|
|
from test import support
|
|
from test.support import load_package_tests
|
|
|
|
|
|
# Creating a virtual environment and building C extensions is slow
|
|
support.requires('cpu')
|
|
|
|
|
|
# Load all tests in package
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|