From d3e497a84da362d6448a412bd6674f7576e18f7f 2011-05-24 18:21:45 From: Thomas Kluyver Date: 2011-05-24 18:21:45 Subject: [PATCH] Call sys.exit() at correct point in iptest. --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 37217b1..42676b2 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -425,8 +425,8 @@ def run_iptestall(): print 'You may wish to rerun this one individually, with:' print ' '.join(failed_runner.call_args) print - # Ensure that our exit code indicates failure - sys.exit(1) + # Ensure that our exit code indicates failure + sys.exit(1) def main():