diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-08-30 19:44:32 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-08-30 19:44:32 (GMT) |
commit | ce7d4cbc3bb49e331a119df21058e9bbd6f15f83 (patch) | |
tree | a2dba96efdd1fe537f036a476ee405d07d06c3d0 /Lib/importlib | |
parent | 6afbaef2fd439e9c6a9269f07309f8bb91255fd3 (diff) | |
download | cpython-ce7d4cbc3bb49e331a119df21058e9bbd6f15f83.zip cpython-ce7d4cbc3bb49e331a119df21058e9bbd6f15f83.tar.gz cpython-ce7d4cbc3bb49e331a119df21058e9bbd6f15f83.tar.bz2 |
Turn on verbose2 for importlib.test.regrtest so as to see failures when they occur.
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/test/regrtest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/importlib/test/regrtest.py b/Lib/importlib/test/regrtest.py index aedc338..ea9db2b 100644 --- a/Lib/importlib/test/regrtest.py +++ b/Lib/importlib/test/regrtest.py @@ -8,7 +8,6 @@ this script. XXX FAILING test_import # execution bit, exception name differing, file name differing between code and module (?) - test_importhooks # package not set in _gcd_import() but level > 0 test_pep3120 # Difference in exception test_runpy # Importing sys.imp.eric raises AttributeError instead of ImportError (as does any attempt to import a sub-module @@ -34,4 +33,4 @@ if __name__ == '__main__': # No programmatic way to specify tests to exclude sys.argv.extend(exclude) - regrtest.main(quiet=True) + regrtest.main(quiet=True, verbose2=True) |