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.
This commit is contained in:
R. David Murray 2009-03-31 19:49:15 +00:00
parent bdeacba51b
commit 612f1d5f48
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ def runtest_inner(test, verbose, quiet, test_times,
print test, "skipped --", msg
sys.stdout.flush()
return -2
except (ImportError, unittest.SkipTest), msg:
except unittest.SkipTest, msg:
if not quiet:
print test, "skipped --", msg
sys.stdout.flush()