mirror of
https://github.com/python/cpython.git
synced 2026-07-26 11:52:27 -04:00
031645a884
(cherry picked from commit 09dfb50f1b)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
16 lines
275 B
Python
16 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)
|