Merge pull request #469 from takluyver/exit-code

Add exit code when running all tests with iptest.
This commit is contained in:
Thomas 2011-05-25 02:18:00 -07:00
commit d1ab1fc203

View File

@ -425,6 +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)
def main():