mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Add import_function method to test.test_support, and modify a number of
tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on.
This commit is contained in:
parent
bb8cb0e192
commit
59beec326a
20 changed files with 78 additions and 41 deletions
|
|
@ -2,10 +2,6 @@
|
|||
|
||||
from test import test_support
|
||||
|
||||
try:
|
||||
import posix
|
||||
except ImportError:
|
||||
raise unittest.SkipTest, "posix is not available"
|
||||
|
||||
import time
|
||||
import os
|
||||
|
|
@ -13,6 +9,9 @@ import pwd
|
|||
import shutil
|
||||
import unittest
|
||||
import warnings
|
||||
|
||||
posix = test_support.import_module('posix')
|
||||
|
||||
warnings.filterwarnings('ignore', '.* potential security risk .*',
|
||||
RuntimeWarning)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue