Commit 6cc077d1 authored by Jason R. Coombs's avatar Jason R. Coombs

Don't suppress SystemExit when running tests; Fixes #336

--HG--
branch : distribute
extra : rebase_source : f337a5cfc45c1303ef389334a58d1d8c65b95d93
parent 11491404
......@@ -85,10 +85,8 @@ class test(_test):
entry_points = os.path.join('distribute.egg-info', 'entry_points.txt')
if not os.path.exists(entry_points):
try:
_test.run(self)
finally:
return
_test.run(self)
return # even though _test.run will raise SystemExit
f = open(entry_points)
......
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