mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
This commit is contained in:
parent
9e0b363629
commit
597ebab744
10 changed files with 37 additions and 15 deletions
|
@ -10,8 +10,8 @@ import unittest
|
|||
from test.test_support import (requires, verbose, run_unittest, unlink, rmtree,
|
||||
import_module)
|
||||
|
||||
#Skip test if bsddb cannot import _bsddb.
|
||||
import_module('bsddb')
|
||||
# Skip test if _bsddb module was not built.
|
||||
import_module('_bsddb')
|
||||
|
||||
# When running as a script instead of within the regrtest framework, skip the
|
||||
# requires test, since it's obvious we want to run them.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue