Kaydet (Commit) 612f1d5f authored tarafından R. David Murray's avatar R. David Murray

Remove the regrtest check that turns any ImportError into a skipped test.

Hopefully all modules whose imports legitimately result in a skipped
test have been properly wrapped by the previous commits.
üst bdeacba5
...@@ -580,7 +580,7 @@ def runtest_inner(test, verbose, quiet, test_times, ...@@ -580,7 +580,7 @@ def runtest_inner(test, verbose, quiet, test_times,
print test, "skipped --", msg print test, "skipped --", msg
sys.stdout.flush() sys.stdout.flush()
return -2 return -2
except (ImportError, unittest.SkipTest), msg: except unittest.SkipTest, msg:
if not quiet: if not quiet:
print test, "skipped --", msg print test, "skipped --", msg
sys.stdout.flush() sys.stdout.flush()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment