mirror of
https://github.com/python/cpython.git
synced 2025-10-19 16:03:42 +00:00
15 lines
275 B
Python
15 lines
275 B
Python
import os
|
|
from test.support import load_package_tests
|
|
import unittest
|
|
|
|
|
|
try:
|
|
import termios
|
|
except ImportError:
|
|
raise unittest.SkipTest("termios required")
|
|
else:
|
|
del termios
|
|
|
|
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|