Progress towards getting the test suite in shape again.

Work all over the place to get more tests to pass.
pull/37/head
Fernando Perez 17 years ago
parent ed2f210ebe
commit dd4405c646

@ -234,7 +234,12 @@ class IPTester(object):
else:
def run(self):
"""Run the stored commands"""
return subprocess.call(self.call_args)
try:
return subprocess.call(self.call_args)
except:
import traceback
traceback.print_exc()
return 1 # signal failure
def make_runners():

Loading…
Cancel
Save