mirror of
https://github.com/python/cpython.git
synced 2025-11-09 10:01:42 +00:00
gh-138801: re-enable `pyrepl` tests on Windows (GH-138802)
(cherry picked from commit 4f3cab96c1)
Co-authored-by: Chris Eibl <138194463+chris-eibl@users.noreply.github.com>
11 lines
242 B
Python
11 lines
242 B
Python
import os
|
|
import sys
|
|
from test.support import import_helper, load_package_tests
|
|
|
|
|
|
if sys.platform != "win32":
|
|
import_helper.import_module("termios")
|
|
|
|
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|